Files
fx_cast/ext/src/shim/cast/classes/Error.ts
2019-03-12 07:16:36 +00:00

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) {
}
}