feat: more narrowed types
This commit is contained in:
parent
9a5d025f40
commit
9a402b0921
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "konoebml",
|
"name": "konoebml",
|
||||||
"version": "0.1.0-rc.5",
|
"version": "0.1.0-rc.6",
|
||||||
"description": "A modern JavaScript implementation of EBML RFC8794",
|
"description": "A modern JavaScript implementation of EBML RFC8794",
|
||||||
"main": "./dist/index.cjs",
|
"main": "./dist/index.cjs",
|
||||||
"module": "./dist/index.js",
|
"module": "./dist/index.js",
|
||||||
|
19
src/index.ts
19
src/index.ts
@ -49,7 +49,7 @@ export {
|
|||||||
type EbmlFloatDataTagIdType,
|
type EbmlFloatDataTagIdType,
|
||||||
type EbmlIntDataTagIdType,
|
type EbmlIntDataTagIdType,
|
||||||
type EbmlSimpleBlockTagIdType,
|
type EbmlSimpleBlockTagIdType,
|
||||||
type EbmlAsciiDataTagIdType as EbmlStringDataTagIdType,
|
type EbmlAsciiDataTagIdType,
|
||||||
type EbmlUintDataTagIdType,
|
type EbmlUintDataTagIdType,
|
||||||
type EbmlUtf8DataTagIdType,
|
type EbmlUtf8DataTagIdType,
|
||||||
type EbmlTagIdType,
|
type EbmlTagIdType,
|
||||||
@ -66,19 +66,4 @@ export {
|
|||||||
isEbmlUtf8DataTagId,
|
isEbmlUtf8DataTagId,
|
||||||
isUnknownTagId,
|
isUnknownTagId,
|
||||||
} from './models/enums';
|
} from './models/enums';
|
||||||
export type {
|
export type * from './models/tag';
|
||||||
EbmlUnknownTagType,
|
|
||||||
EbmlUintTagType,
|
|
||||||
EbmlUtf8TagType,
|
|
||||||
EbmlBinaryTagType,
|
|
||||||
EbmlAsciiTagType,
|
|
||||||
EbmlDateTagType,
|
|
||||||
EbmlDataTagType,
|
|
||||||
EbmlFloatTagType,
|
|
||||||
EbmlIntTagType,
|
|
||||||
EbmlBlockTagType,
|
|
||||||
EbmlSimpleBlockTagType,
|
|
||||||
EbmlMasterTagType,
|
|
||||||
EbmlTagExcludeField,
|
|
||||||
EbmlTagType,
|
|
||||||
} from './models/tag';
|
|
||||||
|
1010
src/models/tag.ts
1010
src/models/tag.ts
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user