This commit is contained in:
syuilo
2018-08-18 23:48:54 +09:00
parent ef79903811
commit df71c90f9f
6 changed files with 270 additions and 17 deletions

View File

@ -52,6 +52,11 @@ export type IDriveFile = {
filename: string;
contentType: string;
metadata: IMetadata;
/**
* ファイルサイズ
*/
length: number;
};
export function validateFileName(name: string): boolean {