Error on interface definition MomentCreationData

line 128 getting error ";" expected
This commit is contained in:
Jorge Baroudi
2016-01-26 10:51:04 -06:00
parent 46719185c5
commit 6e38637342

View File

@@ -125,11 +125,11 @@ declare module moment {
}
interface MomentCreationData {
input?: string,
format?: string,
locale: MomentLocale,
isUTC: boolean,
strict?: boolean
input?: string;
format?: string;
locale: MomentLocale;
isUTC: boolean;
strict?: boolean;
}
interface Moment {