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

7 lines
177 B
TypeScript

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