Share links list WIP

This commit is contained in:
Tom Moor
2018-05-22 23:01:49 -07:00
parent b40b77b228
commit d93815ca0a
13 changed files with 224 additions and 11 deletions

View File

@@ -9,6 +9,15 @@ export type User = {
isSuspended?: boolean,
};
export type Share = {
id: string,
url: string,
documentTitle: string,
createdBy: User,
createdAt: string,
updatedAt: string,
};
export type Team = {
id: string,
name: string,