Files
2026-02-21 10:33:18 +01:00

10 lines
418 B
TypeScript

import type { MediaParserStructureUnstable } from '../parse-result';
import type { ParserState } from '../state/parser-state';
export type MediaParserMetadataEntry = {
key: string;
value: string | number;
trackId: number | null;
};
export declare const getMetadata: (state: ParserState) => MediaParserMetadataEntry[];
export declare const hasMetadata: (structure: MediaParserStructureUnstable) => boolean;