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

@ -10,6 +10,9 @@ export interface IChart {
date: Date;
/**
*
*/
users: {
local: {
/**
@ -36,6 +39,9 @@ export interface IChart {
};
};
/**
* 稿
*/
notes: {
local: {
/**
@ -95,4 +101,53 @@ export interface IChart {
};
};
};
/**
* ()
*/
drive: {
local: {
/**
*
*/
totalCount: number;
/**
*
*/
totalSize: number;
/**
*
*/
diffCount: number;
/**
*
*/
diffSize: number;
};
remote: {
/**
*
*/
totalCount: number;
/**
*
*/
totalSize: number;
/**
*
*/
diffCount: number;
/**
*
*/
diffSize: number;
};
};
}

View file

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