From d7d5f7fc987c01049a19ef2af26daa8eb05f1e35 Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Sat, 16 Aug 2014 12:32:41 +1000 Subject: [PATCH] Dropbox: Document reason for dummy class https://github.com/Microsoft/TypeScript/issues/371 --- dropboxjs/dropboxjs.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dropboxjs/dropboxjs.d.ts b/dropboxjs/dropboxjs.d.ts index ab3dbe2ee6..f9a2c9a400 100644 --- a/dropboxjs/dropboxjs.d.ts +++ b/dropboxjs/dropboxjs.d.ts @@ -290,6 +290,7 @@ declare module Dropbox { } module AuthDriver { + /** Do not use class! TypeScript definition implementation detail : https://github.com/Microsoft/TypeScript/issues/371 */ class IAuthDriver { doAuthorize(authUrl: string, stateParam: string, client: Client, callback?: QueryParamsCallback): void; } @@ -504,4 +505,4 @@ declare module Dropbox { appHash(): string; } -} \ No newline at end of file +}