// Type definitions for jQuery.jNotify 1.0 // Project: http://jnotify.codeplex.com // Definitions by: James Curran // Definitions: https://github.com/borisyankov/DefinitelyTyped // Project by: Fabio Franzini /// interface JNotifyInitOptions { oneAtTime?: boolean; appendType?: string; } interface JNotifyOptions { text?: string; type?: string; showIcon?: boolean; permanent?: boolean; disappearTime?: number; } interface JQuery { jnotifyInizialize(options?: JNotifyInitOptions); jnotifyAddMessage(options?: JNotifyOptions); }