components
2 weeks ago
testing
2 years ago
components.d.ts
3 months ago
index.d.ts
5 years ago
interfaces.d.ts
3 months ago
stencil-public-runtime.d.ts
10 months ago
util.d.ts
2 years ago
util.d.ts
23 lines
| 1 | /** |
| 2 | * Find out if time is passed. |
| 3 | * @returns boolean |
| 4 | */ |
| 5 | export declare function timePassed({ current, duration, showAfter }: { |
| 6 | current: number; |
| 7 | duration: number; |
| 8 | showAfter: number; |
| 9 | }): boolean; |
| 10 | export declare function lightOrDark(color: string): "light" | "dark"; |
| 11 | export declare function timeToSeconds(time: any): number; |
| 12 | export declare function getMobileOperatingSystem(): "Windows Phone" | "Android" | "iOS" | "unknown"; |
| 13 | export declare function isIOS(): boolean; |
| 14 | export declare function isMobile(): boolean; |
| 15 | /** |
| 16 | * Is iOS Youtube Fullscreen. |
| 17 | */ |
| 18 | export declare function isiOSYoutubeFullscreen(player: any): boolean; |
| 19 | export declare function isWebView(): boolean; |
| 20 | export declare function isAndroidWebView(): boolean; |
| 21 | export declare function parseColor(color: any): any[]; |
| 22 | export declare function exitFullScreen(player: any): void; |
| 23 |