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

added comment to redux

This commit is contained in:
muerwre 2019-08-25 21:19:43 +07:00
parent 56f62950d2
commit b4d7bd2c8a
2 changed files with 10 additions and 6 deletions

View file

@ -113,6 +113,10 @@ export interface INode {
updatedAt?: string;
}
export interface IComment {
text: string;
}
export type IUploadProgressHandler = (progress: ProgressEvent) => void;
export type IError = ValueOf<typeof ERRORS>;
export type IValidationErrors = Record<string, IError>;