5 lines
274 B
TypeScript
5 lines
274 B
TypeScript
import type { MediaParserKeyframe } from './options';
|
|
import type { ParserState } from './state/parser-state';
|
|
export declare const getKeyframes: (state: ParserState) => MediaParserKeyframe[] | null;
|
|
export declare const hasKeyframes: (parserState: ParserState) => boolean;
|