/** * @name game-devices.types * @description Game devices types in ngx-responsive * * @license MIT */ /** * @type * @name TPs4 * @export TPs4 */ export declare type TPs4 = 'Playstation 4'; /** * @type * @name TPs3 * @export TPs3 */ export declare type TPs3 = 'Playstation 3'; /** * @type * @name TXboxOne * @export TXboxOne */ export declare type TXboxOne = 'Xbox One'; /** * @type * @name TXbox * @export TXbox */ export declare type TXbox = 'Xbox'; /** * @type * @name TWii * @export TWii */ export declare type TWii = 'Wii'; /** * @type * @name TWiiU * @export TWiiU */ export declare type TWiiU = 'Wii U'; /** * @type * @name TNintendo3DS * @export TNintendo3DS */ export declare type TNintendo3DS = 'Nintendo 3DS'; /** * @type * @name TPlaystationVita * @export TPlaystationVita */ export declare type TPlaystationVita = 'Playstation Vita'; /** * @type * @name TPsp * @export TPsp */ export declare type TPsp = 'PSP'; /** * @type * @name TGameDevices * @export TGameDevices */ export declare type TGameDevices = TPs4 | TPs3 | TXboxOne | TXbox | TWii | TWiiU | TNintendo3DS | TPlaystationVita | TPsp | null;