From 548a7925ed894613942f649222f095eddcff2aee Mon Sep 17 00:00:00 2001 From: Christian Svensson Date: Wed, 8 Mar 2017 18:19:35 +0100 Subject: [PATCH] sync deprecated markers with auth0-js --- auth0-js/index.d.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/auth0-js/index.d.ts b/auth0-js/index.d.ts index f51e3979d3..a3ac8331ae 100644 --- a/auth0-js/index.d.ts +++ b/auth0-js/index.d.ts @@ -63,9 +63,7 @@ export class Authentication { * Makes a call to the `/ssodata` endpoint * * @method getSSOData - * @param {Boolean} withActiveDirectories * @param {Function} callback - * @deprecated `getSSOData` will be soon deprecated. */ getSSOData(callback?: (error?: Auth0Error, authResult?: any) => any): void; @@ -75,7 +73,6 @@ export class Authentication { * @method getSSOData * @param {Boolean} withActiveDirectories * @param {Function} callback - * @deprecated `getSSOData` will be soon deprecated. */ getSSOData(withActiveDirectories: boolean, callback?: (error?: Auth0Error, authResult?: any) => any): void; @@ -94,7 +91,6 @@ export class Authentication { * @method delegation * @param {Object} options: https://auth0.com/docs/api/authentication#!#post--delegation * @param {Function} callback - * @deprecated `delegation` will be soon deprecated. */ delegation(options: any, callback: (error?: Auth0Error, authResult?: Auth0DelegationToken) => any): any;