mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
"use strict";
|
|
|
|
// https://developers.google.com/cast/docs/reference/chrome/chrome.cast.CredentialsData
|
|
export default class DialRequest {
|
|
constructor(
|
|
public credentials: string
|
|
, public credentialsData: string) {
|
|
}
|
|
}
|