playable
Version:
Video player based on HTML5Video
13 lines (12 loc) • 405 B
TypeScript
declare enum Error {
SRC_PARSE = "error-src-parse",
MANIFEST_LOAD = "error-manifest-load",
MANIFEST_PARSE = "error-manifest-parse",
MANIFEST_INCOMPATIBLE = "error-manifest-incompatible",
LEVEL_LOAD = "error-level-load",
CONTENT_LOAD = "error-content-load",
CONTENT_PARSE = "error-content-parse",
MEDIA = "error-media",
UNKNOWN = "error-unknown"
}
export default Error;