mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 11:38:14 +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;
|