Add Drop.createContext typing

This commit is contained in:
Adi Dahiya
2015-03-26 14:08:35 -04:00
parent be0b6b394f
commit b707d6fbdd
+6
View File
@@ -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 {