Component Bundler Bugfix

This commit is contained in:
2026-04-04 20:30:40 +01:00
parent 1037bbb546
commit 5166ba037f
8 changed files with 118 additions and 91 deletions
@@ -1,6 +1,5 @@
type Params = {
tsx: string;
file_path: string;
};
export default function grabTsxStringModule<T extends any = any>({ tsx, file_path, }: Params): Promise<T>;
export default function grabTsxStringModule<T extends any = any>({ tsx, }: Params): Promise<T>;
export {};