fixed flow-type error

This commit is contained in:
zmagod 2017-12-14 08:08:08 +01:00
parent 249d3d7698
commit 3b1cb51be9

2
flow-typed/types.js vendored
View file

@ -31,7 +31,7 @@ export type ValidationError = ValidationErrorSimple | ValidationErrorIntl;
export type ValidationErrors = string | Array<string> | Array<ValidationError>;
export type Activity = {
id: number,
id?: number,
message: string,
created_at: string
};