mam 1.11.678 → 1.11.679
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/node.d.ts +3 -3
- package/node.js.map +1 -1
- package/node.meta.tree +1 -0
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.meta.tree +1 -0
package/node.d.ts
CHANGED
|
@@ -734,7 +734,7 @@ declare namespace $ {
|
|
|
734
734
|
protected copy(to: string): void;
|
|
735
735
|
protected drop(): void;
|
|
736
736
|
protected read(): Uint8Array<ArrayBuffer>;
|
|
737
|
-
protected write(buffer: Uint8Array): undefined;
|
|
737
|
+
protected write(buffer: Uint8Array<ArrayBuffer>): undefined;
|
|
738
738
|
protected kids(): this[];
|
|
739
739
|
resolve(path: string): this;
|
|
740
740
|
relate(base?: $mol_file): string;
|
|
@@ -1068,11 +1068,11 @@ declare namespace $ {
|
|
|
1068
1068
|
}
|
|
1069
1069
|
|
|
1070
1070
|
declare namespace $ {
|
|
1071
|
-
function $mol_base64_encode(src: string | Uint8Array): string;
|
|
1071
|
+
function $mol_base64_encode(src: string | Uint8Array<ArrayBuffer>): string;
|
|
1072
1072
|
}
|
|
1073
1073
|
|
|
1074
1074
|
declare namespace $ {
|
|
1075
|
-
function $mol_base64_encode_node(str: string | Uint8Array): string;
|
|
1075
|
+
function $mol_base64_encode_node(str: string | Uint8Array<ArrayBuffer>): string;
|
|
1076
1076
|
}
|
|
1077
1077
|
|
|
1078
1078
|
declare namespace $ {
|