brs-js 2.0.6 → 2.0.7
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/dist/src/index.d.ts +0 -10
- package/dist/src/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +0 -11
package/dist/src/index.d.ts
CHANGED
|
@@ -11,14 +11,4 @@ declare const brs: {
|
|
|
11
11
|
};
|
|
12
12
|
export { read, write, utils, constants };
|
|
13
13
|
export default brs;
|
|
14
|
-
declare global {
|
|
15
|
-
interface Window {
|
|
16
|
-
BRS: {
|
|
17
|
-
read: typeof read;
|
|
18
|
-
write: typeof write;
|
|
19
|
-
utils: typeof utils;
|
|
20
|
-
constants: typeof constants;
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
14
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,QAAQ,CAAC;AAC1B,OAAO,KAAK,MAAM,SAAS,CAAC;AAC5B,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AACzC,cAAc,SAAS,CAAC;AAGxB,QAAA,MAAM,GAAG;;;;;CAAoC,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC;AACzC,eAAe,GAAG,CAAC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,QAAQ,CAAC;AAC1B,OAAO,KAAK,MAAM,SAAS,CAAC;AAC5B,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AACzC,cAAc,SAAS,CAAC;AAGxB,QAAA,MAAM,GAAG;;;;;CAAoC,CAAC;AAC9C,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC;AACzC,eAAe,GAAG,CAAC"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -9,17 +9,6 @@ const brs = { read, write, utils, constants };
|
|
|
9
9
|
export { read, write, utils, constants };
|
|
10
10
|
export default brs;
|
|
11
11
|
|
|
12
|
-
declare global {
|
|
13
|
-
interface Window {
|
|
14
|
-
BRS: {
|
|
15
|
-
read: typeof read;
|
|
16
|
-
write: typeof write;
|
|
17
|
-
utils: typeof utils;
|
|
18
|
-
constants: typeof constants;
|
|
19
|
-
};
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
12
|
if (typeof window !== 'undefined') {
|
|
24
13
|
window.BRS = brs;
|
|
25
14
|
}
|