scinote-web/flow-typed/types.js

12 lines
144 B
JavaScript

// @flow
export type Activity = {
id: number,
message: string,
created_at :string
}
export type Team = {
id: number,
name: string
}