bunext/dist/functions/server/web-pages/grab-tsx-string-module.d.ts

6 lines
143 B
TypeScript

type Params = {
tsx: string;
};
export default function grabTsxStringModule<T extends any = any>({ tsx, }: Params): Promise<T>;
export {};