6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
type Params = {
|
|
tsx: string;
|
|
};
|
|
export default function grabTsxStringModule<T extends any = any>({ tsx, }: Params): Promise<T>;
|
|
export {};
|