@svta/common-media-library
Version:
A common library for media playback in JavaScript
23 lines • 443 B
TypeScript
import type { ValueOf } from '../utils/ValueOf.js';
import { UTF_16 } from './UTF_16.js';
import { UTF_8 } from './UTF_8.js';
/**
* Text encoding types.
*
* @group Utils
*
* @beta
*/
export declare const Encoding: {
readonly UTF8: typeof UTF_8;
readonly UTF16: typeof UTF_16;
};
/**
* Text encoding types.
*
* @group Utils
*
* @beta
*/
export type Encoding = ValueOf<typeof Encoding>;
//# sourceMappingURL=Encoding.d.ts.map