-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
65 lines (56 loc) · 1.24 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Type definitions for react-native-sound
// Project: https://github.com/krishna4157/react-native-tv-cast
// Definitions by: Krishna4157
// TypeScript Version: 2.3.2
// deviceID
type DeviceId = string;
//StreamData
type StreamData = {
url: string;
title: string;
description: string;
icon: string;
};
type CallbackType = (error: any) => void;
declare class TVCast {
/**
* Reset Discovery of Smart TV Devices List.
* Use this method to reset the discovery process.
*
*/
static resetDiscovery(): void;
/**
* Stops Casting on Connected TV.
* Use this method to stop the casting process.
*
*/
static stopCast(): void;
/**
* Sets Selected Device For Casting Process.
*
* @param deviceId DeviceId String
* @param StreamData StreamData
* {
* "url" : '',
* "title" : '',
* "description" : '',
* "icon" : ''
* }
* @param callback Can be set to retrieve the response of output values.
*
*/
static setDevice(
deviceId: DeviceId,
StreamData: StreamData,
callback: CallbackType
): void;
/**
* Return true if the sound has been loaded.
*/
isLoaded(): boolean;
/**
* Whether the player is playing or not.
*/
isPlaying(): boolean;
}
export = TVCast;