@ot-builder/io-bin-ext-private 1.7.8 → 1.8.0
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/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/main/index.d.ts +7 -7
- package/lib/xprv/blob.d.ts +1 -1
- package/lib/xprv/index.d.ts +2 -2
- package/package.json +13 -13
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./main"), exports);
|
|
5
4
|
tslib_1.__exportStar(require("./cfg"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./main"), exports);
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/lib/main/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { SfntIoTableSink } from "@ot-builder/io-bin-sfnt";
|
|
2
|
-
import { OtExtPrivate } from "@ot-builder/ot-ext-private";
|
|
3
|
-
import { OtGlyph } from "@ot-builder/ot-glyphs";
|
|
4
|
-
import { OtFontMetadata } from "@ot-builder/ot-metadata";
|
|
5
|
-
import { Sfnt } from "@ot-builder/ot-sfnt";
|
|
6
|
-
import { Data } from "@ot-builder/prelude";
|
|
7
|
-
import { ExtPrivateCfg } from "../cfg";
|
|
1
|
+
import type { SfntIoTableSink } from "@ot-builder/io-bin-sfnt";
|
|
2
|
+
import { type OtExtPrivate } from "@ot-builder/ot-ext-private";
|
|
3
|
+
import type { OtGlyph } from "@ot-builder/ot-glyphs";
|
|
4
|
+
import type { OtFontMetadata } from "@ot-builder/ot-metadata";
|
|
5
|
+
import type { Sfnt } from "@ot-builder/ot-sfnt";
|
|
6
|
+
import type { Data } from "@ot-builder/prelude";
|
|
7
|
+
import type { ExtPrivateCfg } from "../cfg";
|
|
8
8
|
export declare function readExtPrivate(sfnt: Sfnt, cfg: ExtPrivateCfg, gOrd: Data.Order<OtGlyph>, md: OtFontMetadata): OtExtPrivate;
|
|
9
9
|
export declare function writeExtPrivate(out: SfntIoTableSink, cfg: ExtPrivateCfg, OtExtPrivate: OtExtPrivate, gOrd: Data.Order<OtGlyph>, md: OtFontMetadata): void;
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/xprv/blob.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Read, Write } from "@ot-builder/bin-util";
|
|
2
|
-
import { XPrv } from "@ot-builder/ot-ext-private";
|
|
2
|
+
import type { XPrv } from "@ot-builder/ot-ext-private";
|
|
3
3
|
export declare const ReadBlob: Read<XPrv.Blob, []>;
|
|
4
4
|
export declare const WriteBlob: Write<XPrv.Blob, []>;
|
|
5
5
|
//# sourceMappingURL=blob.d.ts.map
|
package/lib/xprv/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Read, Write } from "@ot-builder/bin-util";
|
|
2
2
|
import { XPrv } from "@ot-builder/ot-ext-private";
|
|
3
|
-
import { OtGlyph } from "@ot-builder/ot-glyphs";
|
|
4
|
-
import { Data } from "@ot-builder/prelude";
|
|
3
|
+
import type { OtGlyph } from "@ot-builder/ot-glyphs";
|
|
4
|
+
import type { Data } from "@ot-builder/prelude";
|
|
5
5
|
export declare const ReadXPrv: Read<XPrv.Table, [gOrd: Data.Order<OtGlyph>]>;
|
|
6
6
|
export declare const WriteXPrv: Write<XPrv.Table, [gOrd: Data.Order<OtGlyph>]>;
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ot-builder/io-bin-ext-private",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.8.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,21 +24,21 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@ot-builder/bin-util": "1.
|
|
28
|
-
"@ot-builder/errors": "1.
|
|
29
|
-
"@ot-builder/ot-ext-private": "1.
|
|
30
|
-
"@ot-builder/ot-glyphs": "1.
|
|
31
|
-
"@ot-builder/ot-metadata": "1.
|
|
32
|
-
"@ot-builder/prelude": "1.
|
|
33
|
-
"@ot-builder/primitive": "1.
|
|
34
|
-
"@ot-builder/ot-sfnt": "1.
|
|
35
|
-
"@ot-builder/io-bin-sfnt": "1.
|
|
27
|
+
"@ot-builder/bin-util": "1.8.0",
|
|
28
|
+
"@ot-builder/errors": "1.8.0",
|
|
29
|
+
"@ot-builder/ot-ext-private": "1.8.0",
|
|
30
|
+
"@ot-builder/ot-glyphs": "1.8.0",
|
|
31
|
+
"@ot-builder/ot-metadata": "1.8.0",
|
|
32
|
+
"@ot-builder/prelude": "1.8.0",
|
|
33
|
+
"@ot-builder/primitive": "1.8.0",
|
|
34
|
+
"@ot-builder/ot-sfnt": "1.8.0",
|
|
35
|
+
"@ot-builder/io-bin-sfnt": "1.8.0",
|
|
36
36
|
"tslib": "^2.8.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@ot-builder/io-bin-glyph-store": "1.
|
|
40
|
-
"@ot-builder/io-bin-metadata": "1.
|
|
41
|
-
"@ot-builder/test-util": "1.
|
|
39
|
+
"@ot-builder/io-bin-glyph-store": "1.9.0",
|
|
40
|
+
"@ot-builder/io-bin-metadata": "1.8.0",
|
|
41
|
+
"@ot-builder/test-util": "1.8.0",
|
|
42
42
|
"@types/jest": "^30.0.0",
|
|
43
43
|
"jest": "^30.2.0"
|
|
44
44
|
}
|