Rename all definition files, remove versions

This commit is contained in:
Boris Yankov
2013-01-17 17:17:27 +02:00
parent 90ad7c6591
commit c98eebb137
72 changed files with 0 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
// Typescript type definitions for jQuery.jNotify 1.0 by Fabio Franzini
// Project: http://jnotify.codeplex.com
// Definitions by: James Curran <https://github.com/jamescurran/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path='../jquery/jquery-1.9.d.ts'/>
interface JNotifyInitOptions {
oneAtTime?: bool;
appendType?: string;
}
interface JNotifyOptions {
text?: string;
type?: string;
showIcon?: bool;
permanent?: bool;
disappearTime?: number;
}
interface JQuery {
jnotifyInizialize(options?: JNotifyInitOptions);
jnotifyAddMessage(options?: JNotifyOptions);
}