mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-10 01:29:58 +00:00
11 lines
268 B
TypeScript
Executable File
11 lines
268 B
TypeScript
Executable File
"use strict";
|
|
|
|
// https://developers.google.com/cast/docs/reference/chrome/chrome.cast.Error
|
|
export default class Error {
|
|
constructor (
|
|
public code: string
|
|
, public description: string = null
|
|
, public details: any = null) {
|
|
}
|
|
}
|