mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-13 17:52:41 +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;
|