@svta/common-media-library
Version:
A common library for media playback in JavaScript
17 lines • 416 B
TypeScript
import type { Cmcd } from './Cmcd.js';
/**
* Filter function for CMCD v1 keys.
*
* @param key - The CMCD key to filter.
*
* @returns `true` if the key should be included, `false` otherwise.
*
* @group CMCD
*
* @beta
*
* @example
* {@includeCode ../../test/cmcd/isCmcdV1Key.test.ts#example}
*/
export declare function isCmcdV1Key(key: string): key is keyof Cmcd;
//# sourceMappingURL=isCmcdV1Key.d.ts.map