UNPKG

@xg4/device

Version:

Device detection (phone, tablet, desktop, os)

13 lines (12 loc) 314 B
export default class Orientation { readonly type: "landscape" | "portrait"; listen(cb?: (event: Event, type: 'landscape' | 'portrait') => void): void; /** * @description 竖屏状态 */ isPortrait(): boolean; /** * @description 横屏状态 */ isLandscape(): boolean; }