UNPKG

roku-ecp

Version:

A Node package designed to control Roku devices using TypeScript

10 lines (9 loc) 185 B
export interface RokuApp { name: string; id: number; type: "appl" | "tvin"; version: string; } export declare type RokuAppInfo = Partial<RokuApp> & { id: number; };