Rename module, directory and filename to follow CONTRIBUTING.md

This commit is contained in:
Keisuke Oohashi 2014-10-27 11:46:19 +09:00
parent d4ad0c24d7
commit 796f857dcb
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/// <reference path="notify.js.d.ts" />
/// <reference path="notifyjs.d.ts" />
function test_Notify_constructor() {
//Min

View File

@ -4,7 +4,7 @@
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare var Notify: {
new (title : string , options? : notify.INotifyOption): notify.INotify;
new (title : string , options? : notifyjs.INotifyOption): notifyjs.INotify;
/**
* Check is permission is needed for the user to receive notifications.
@ -26,7 +26,7 @@ declare var Notify: {
isSupported() : boolean;
}
declare module notify {
declare module notifyjs {
/**
* Interface for Web Notifications API Wrapper.