bunext/dist/functions/server/web-pages/grab-file-path-module.d.ts

7 lines
187 B
TypeScript

type Params = {
file_path: string;
out_file?: string;
};
export default function grabFilePathModule<T extends any = any>({ file_path, out_file, }: Params): Promise<T>;
export {};