Add newer cast API additions and stub methods

This commit is contained in:
hensm
2021-02-16 04:03:56 +00:00
parent 5a9a32f5ab
commit e4e133ced5
22 changed files with 294 additions and 32 deletions

View File

@@ -0,0 +1,9 @@
"use strict";
// https://developers.google.com/cast/docs/reference/chrome/chrome.cast.CredentialsData
export default class DialRequest {
constructor (
public credentials: string
, public credentialsData: string) {
}
}