mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-15 03:13:20 +08:00
12 lines
144 B
JavaScript
12 lines
144 B
JavaScript
// @flow
|
|
|
|
export type Activity = {
|
|
id: number,
|
|
message: string,
|
|
created_at :string
|
|
}
|
|
|
|
export type Team = {
|
|
id: number,
|
|
name: string
|
|
}
|