mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-10 09:39:58 +00:00
10 lines
262 B
TypeScript
Executable File
10 lines
262 B
TypeScript
Executable File
"use strict";
|
|
|
|
// https://developers.google.com/cast/docs/reference/chrome/chrome.cast.SenderApplication
|
|
export default class SenderApplication {
|
|
public packageId: string = null;
|
|
public url: string = null;
|
|
|
|
constructor (public platform: string) {}
|
|
}
|