Add typings for contextjs 2.1.1

This commit is contained in:
Kern Handa
2015-07-12 01:14:28 -07:00
parent a9c59f8166
commit 476a231fe3
2 changed files with 49 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import context = require("contextjs");
context.init();
context.settings({compress: true});
context.attach('#test', [
{header: 'header 1'},
{divider: true},
{text:'foobar', submenu: [
{text:'sub1'},
{text:'sub2'}
]}
]);
context.destroy('#test');
+33
View File
@@ -0,0 +1,33 @@
// Type definitions for contextjs 2.1.1
// Project: https://github.com/jakiestfu/Context.js
// Definitions by: Kern Handa <https://github.com/kernhanda>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "contextjs" {
interface MenuObject {
action?: (e: Event) => void;
divider?: boolean;
header?: string;
href?: string;
subMenu?: MenuObject[];
target?: string;
text?: string;
}
interface InitSettings {
above?: string | boolean;
compress?: boolean;
fadeSpeed?: number;
filter?: (e: Element) => void;
preventDoubleContext?: boolean;
}
module context {
function init(settings?: InitSettings): void;
function destroy(selector: any): void;
function attach(selector: any, menuObjects: MenuObject[]): void;
function settings(settings: InitSettings): void;
}
export = context;
}