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

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