7 lines
187 B
TypeScript
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 {};
|