mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 15:08:15 +08:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
|
export type Callback = (
|
||
|
directory: string,
|
||
|
files: string[],
|
||
|
) => string | false | void;
|
||
|
|
||
|
export default function (
|
||
|
directory: string,
|
||
|
callback: Callback,
|
||
|
): string | void;
|