From fddbc6a081307513113be51f7978e02c9ba94aa3 Mon Sep 17 00:00:00 2001 From: Slava Kim Date: Sun, 22 Dec 2013 15:47:56 -0800 Subject: [PATCH] Fix missing semicolons --- meteor/meteor.d.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/meteor/meteor.d.ts b/meteor/meteor.d.ts index 3e270ce12d..a321dc00ec 100644 --- a/meteor/meteor.d.ts +++ b/meteor/meteor.d.ts @@ -65,12 +65,12 @@ interface IMeteor { * ServerConnections * *********************/ status(): { - connected: boolean + connected: boolean; status: string; retryCount: number; retryTime: number; reason: string; - } + }; reconnect(): void; disconnect(): void; @@ -233,7 +233,7 @@ interface IMeteorManager { rendered(callback: Function): void; created(callback: Function): void; destroyed(callback: Function): void; - events(eventMap: {[eventType: string]: Function}): void; + events(eventMap: {[eventType: string]: Function;}): void; helpers(helpers: Object): any; preserve(selector: Object): void; } @@ -284,7 +284,7 @@ interface IMeteorUser { emails?: { address: string; verified: boolean; - } + }; profile?: any; services?: any; createdAt?: number; @@ -312,7 +312,7 @@ interface IMeteorAccounts { requestOfflineToken?: Object; passwordSignupFields?: string; }); - } + }; validateNewUser(func: Function): void; onCreateUser(func: Function): void; createUser(options: { @@ -324,7 +324,7 @@ interface IMeteorAccounts { callback?: Function): void; changePassword(oldPassword: string, newPassword: string, callback?: Function): void; forgotPassword(options: { - email: string + email: string; }, callback?: Function): void; resetPassword(token: string, newPassword: string, callback?: Function): void; @@ -339,12 +339,12 @@ interface IMeteorAccounts { resetPassword: IMeteorEmailValues; enrollAccount: IMeteorEmailValues; verifyEmail: IMeteorEmailValues; - } + }; // DA: I didn't see the signature for this, but it appears in the examples loginServiceConfiguration: { remove(options: Object): void; insert(options: Object): void; - } + }; } interface IMeteorEmailValues { @@ -373,7 +373,7 @@ interface IExternalServiceParams { requestPermissions?: string[]; requestOfflineToken?: boolean; forceApprovalPrompt?: boolean; - } + }; callback?: Function; } @@ -601,4 +601,4 @@ declare var Router: IMeteorRouter; * Todo: * Define "this.function" functions. * Define the signatures of callback functions and other functions. - ***/ \ No newline at end of file + ***/