7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
type Params = {
|
|
file_path: string;
|
|
root_file_path?: string;
|
|
};
|
|
export default function grabPageReactComponentString({ file_path, root_file_path, }: Params): string | undefined;
|
|
export {};
|