智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/54/543d3208c118617a753d76268f1...

12 lines
487 B

declare module 'escalade' {
type Promisable<T> = T | Promise<T>;
export type Callback = (directory: string, files: string[]) => Promisable<string | false | void>;
function escalade(directory: string, callback: Callback): Promise<string | void>;
export = escalade;
}
declare module 'escalade/sync' {
export type Callback = (directory: string, files: string[]) => string | false | void;
function escalade(directory: string, callback: Callback): string | void;
export = escalade;
}