From 796f857dcbdf46f2a5ba5b367d608cff4e48bbff Mon Sep 17 00:00:00 2001 From: Keisuke Oohashi Date: Mon, 27 Oct 2014 11:46:19 +0900 Subject: [PATCH] Rename module, directory and filename to follow CONTRIBUTING.md --- notify.js/notify.js-tests.ts => notifyjs/notifyjs-tests.ts | 2 +- notify.js/notify.js.d.ts => notifyjs/notifyjs.d.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename notify.js/notify.js-tests.ts => notifyjs/notifyjs-tests.ts (96%) rename notify.js/notify.js.d.ts => notifyjs/notifyjs.d.ts (96%) diff --git a/notify.js/notify.js-tests.ts b/notifyjs/notifyjs-tests.ts similarity index 96% rename from notify.js/notify.js-tests.ts rename to notifyjs/notifyjs-tests.ts index 7652a0a91e..8771224c8e 100644 --- a/notify.js/notify.js-tests.ts +++ b/notifyjs/notifyjs-tests.ts @@ -1,4 +1,4 @@ -/// +/// function test_Notify_constructor() { //Min diff --git a/notify.js/notify.js.d.ts b/notifyjs/notifyjs.d.ts similarity index 96% rename from notify.js/notify.js.d.ts rename to notifyjs/notifyjs.d.ts index 651b91ac52..f36b8fbcd0 100644 --- a/notify.js/notify.js.d.ts +++ b/notifyjs/notifyjs.d.ts @@ -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.