7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
type Params = {
|
|
txt_code: string;
|
|
file_path: string;
|
|
};
|
|
export default function stripServerSideLogic({ txt_code, file_path }: Params): string;
|
|
export {};
|