Files
outline/frontend/types/index.js
2017-05-23 00:45:15 -07:00

49 lines
738 B
JavaScript

// @flow
export type User = {
avatarUrl: string,
id: string,
name: string,
username: string,
};
export type Team = {
id: string,
name: string,
};
export type NavigationNode = {
id: string,
title: string,
url: string,
collapsed: boolean,
children: Array<NavigationNode>,
};
export type Document = {
collaborators: Array<User>,
collection: Object,
createdAt: string,
createdBy: string,
html: string,
id: string,
private: boolean,
team: string,
text: string,
title: string,
updatedAt: string,
updatedBy: string,
url: string,
};
export type Pagination = {
limit: number,
nextPath: string,
offset: number,
};
export type ApiKey = {
id: string,
name: ?string,
secret: string,
};