Add flow, example implementation and types
This commit is contained in:
32
types.js
Normal file
32
types.js
Normal file
@@ -0,0 +1,32 @@
|
||||
export type User = {
|
||||
avatarUrl: string,
|
||||
id: string,
|
||||
name: string,
|
||||
username: string,
|
||||
};
|
||||
|
||||
export type Collection = {
|
||||
createdAt: string,
|
||||
description: string,
|
||||
id: string,
|
||||
name: string,
|
||||
type: string,
|
||||
updatedAt: string,
|
||||
url: string,
|
||||
};
|
||||
|
||||
export type Document = {
|
||||
collaborators: Array<User>,
|
||||
collection: Collection,
|
||||
createdAt: string,
|
||||
createdBy: string,
|
||||
html: string,
|
||||
id: string,
|
||||
private: boolean,
|
||||
team: string,
|
||||
text: string,
|
||||
title: string,
|
||||
updatedAt: string,
|
||||
updatedBy: string,
|
||||
url: string,
|
||||
};
|
||||
Reference in New Issue
Block a user