From b707d6fbddb55e5f6b8f8fce37406e2b76b6c5c0 Mon Sep 17 00:00:00 2001 From: Adi Dahiya Date: Thu, 26 Mar 2015 14:08:35 -0400 Subject: [PATCH] Add Drop.createContext typing --- drop/drop.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drop/drop.d.ts b/drop/drop.d.ts index 18568afdd..e3615d510 100644 --- a/drop/drop.d.ts +++ b/drop/drop.d.ts @@ -9,6 +9,12 @@ declare module drop { interface DropStatic { new(options: IDropOptions): Drop; + createContext(options: IDropContextOptions): DropStatic; + } + + interface IDropContextOptions { + classPrefix?: string; + defaults?: IDropOptions; } interface IDropOptions {