7 lines
177 B
TypeScript
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 {};
|