mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-11 01:59:58 +00:00
Convert shim to Typescript (#32)
This commit is contained in:
10
ext/src/shim/cast/classes/Error.ts
Executable file
10
ext/src/shim/cast/classes/Error.ts
Executable file
@@ -0,0 +1,10 @@
|
||||
"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) {
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user