1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed eslint again

This commit is contained in:
muerwre 2019-08-20 10:58:34 +07:00
parent f922536ffa
commit db0a94b581
5 changed files with 42 additions and 27 deletions

View file

@ -68,7 +68,8 @@ export interface IFile {
export interface IFileWithUUID {
temp_id?: UUID;
file: File;
subject: string;
target: string;
type: string;
}
export interface IBlock {
@ -107,3 +108,5 @@ export interface INode {
createdAt?: string;
updatedAt?: string;
}
export type IUploadProgressHandler = (current: number, total: number) => void;