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 {