feat: more narrowed types

This commit is contained in:
master 2025-03-18 04:13:18 +08:00
parent 9a5d025f40
commit 9a402b0921
3 changed files with 969 additions and 62 deletions

View File

@ -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",

View File

@ -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';

File diff suppressed because it is too large Load Diff