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",
"version": "0.1.0-rc.5",
"version": "0.1.0-rc.6",
"description": "A modern JavaScript implementation of EBML RFC8794",
"main": "./dist/index.cjs",
"module": "./dist/index.js",

View File

@ -49,7 +49,7 @@ export {
type EbmlFloatDataTagIdType,
type EbmlIntDataTagIdType,
type EbmlSimpleBlockTagIdType,
type EbmlAsciiDataTagIdType as EbmlStringDataTagIdType,
type EbmlAsciiDataTagIdType,
type EbmlUintDataTagIdType,
type EbmlUtf8DataTagIdType,
type EbmlTagIdType,
@ -66,19 +66,4 @@ export {
isEbmlUtf8DataTagId,
isUnknownTagId,
} from './models/enums';
export type {
EbmlUnknownTagType,
EbmlUintTagType,
EbmlUtf8TagType,
EbmlBinaryTagType,
EbmlAsciiTagType,
EbmlDateTagType,
EbmlDataTagType,
EbmlFloatTagType,
EbmlIntTagType,
EbmlBlockTagType,
EbmlSimpleBlockTagType,
EbmlMasterTagType,
EbmlTagExcludeField,
EbmlTagType,
} from './models/tag';
export type * from './models/tag';

File diff suppressed because it is too large Load Diff