UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

26 lines (21 loc) 646 B
// Type definitions for jQuery.jNotify 1.0 // Project: http://jnotify.codeplex.com // Definitions by: James Curran <https://github.com/jamescurran/> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // Project by: Fabio Franzini /// <reference path='../jquery/jquery.d.ts'/> 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); }