scinote-web/flow-typed/types.js

13 lines
144 B
JavaScript
Raw Normal View History

2017-10-04 17:35:32 +08:00
// @flow
export type Activity = {
id: number,
message: string,
created_at :string
}
export type Team = {
id: number,
name: string
}