mirror of https://github.com/fantasticit/think.git
4 lines
100 B
TypeScript
4 lines
100 B
TypeScript
|
export declare abstract class IFileService {
|
||
|
abstract uploadFile(file: any): Promise<string>;
|
||
|
}
|