/** * @name os-systems.types * @description Os systems types in ngx-responsive * * @license MIT */ /** * @type * @name TWindows * @export TWindows */ export declare type TWindows = 'Windows'; /** * @type * @name TIos * @export TIos */ export declare type TIos = 'iOS'; /** * @type * @name TMacOS * @export TMacOS */ export declare type TMacOS = 'Mac'; /** * @type * @name TLinux * @export TLinux */ export declare type TLinux = 'Linux'; /** * @type * @name TFirefoxOS * @export TFirefoxOS */ export declare type TFirefoxOS = 'Firefox OS'; /** * @type * @name TChromeOS * @export TChromeOS */ export declare type TChromeOS = 'Chrome OS'; /** * @type * @name TosSystems * @export TosSystems */ export declare type TosSystems = TWindows | TMacOS | TLinux | TFirefoxOS | TChromeOS | null;