mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-11 13:30:15 +08:00
12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
|
|
type Promisable<T> = T | Promise<T>;
|
||
|
|
|
||
|
|
export type Callback = (
|
||
|
|
directory: string,
|
||
|
|
files: string[],
|
||
|
|
) => Promisable<string | false | void>;
|
||
|
|
|
||
|
|
export default function (
|
||
|
|
directory: string,
|
||
|
|
callback: Callback,
|
||
|
|
): Promise<string | void>;
|