Renamed files, added headers and fixed test

This commit is contained in:
dotnetnerd 2014-01-21 16:07:17 +01:00
parent 2b11fad40b
commit 4ab427bb2c
2 changed files with 20 additions and 0 deletions

6
domready/domready.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
// Type definitions for domready
// Project: https://github.com/ded/domready
// Definitions by: Christian Holm Nielsen
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare function domready(callback: () => any) : void;

14
ftdomdelegate/ftdomdelegate.d.ts vendored Normal file
View File

@ -0,0 +1,14 @@
// Type definitions for ftdomdelegate
// Project: https://github.com/ftlabs/ftdomdelegate
// Definitions by: Christian Holm Nielsen
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare class Delegate
{
constructor(element: HTMLElement);
on(eventType: string, selector: string, callback : () => any) : void;
on(eventType: string, callback:() => any) : void;
}