ayiin 1.0.14 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1 -11
- package/lib/ayiin.js +1 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,11 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export declare module 'ayiin';
|
|
4
|
-
|
|
5
|
-
/** @public */
|
|
6
|
-
export declare class Ayiin extends Ayiin {
|
|
7
|
-
/** The username for auth */
|
|
8
|
-
email?: string;
|
|
9
|
-
/** The password for auth */
|
|
10
|
-
password?: string;
|
|
11
|
-
}
|
|
1
|
+
declare module 'ayiin';
|
package/lib/ayiin.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
2
|
|
|
4
3
|
import Ayiin from "./core/Ayiin.js";
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
Object.defineProperty(exports, "Ayiin", { enumerable: true, get: function () { return ayiinClient.Ayiin; } });
|
|
5
|
+
export default Ayiin;
|