@enact/webos
Version:
webOS support library
16 lines (12 loc) • 351 B
TypeScript
// Type definitions for webos/platform
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
type Merge<M, N> = Omit<M, Extract<keyof M, keyof N>> & N;
/**
* Returns the object.
*/
export function detect(): object;
/**
* Provides identification of webOS variants.
*/
export declare const platform: object;
export default platform;