8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
type Params = {
|
|
file_path: string;
|
|
root_file_path?: string;
|
|
server_res?: any;
|
|
};
|
|
export default function grabPageReactComponentString({ file_path, root_file_path, server_res, }: Params): string | undefined;
|
|
export {};
|