koa-program/extend/file.d.ts

24 lines
725 B
TypeScript
Raw Normal View History

2021-02-10 03:40:48 +08:00
/**
*
* @description 便
*/
declare class file {
/**
*
* @description
* true
*
* @param {string} filePath
* @return {boolean}
*/
protected static createPath(filePath: string): boolean;
/**
*
* @param {string} src
* @param {string} dest
* @return {boolean}
*/
static copy(src: string, dest: string): boolean;
}
export { file };