You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
394 B
5 lines
394 B
export declare type Orientation = 'any' | 'natural' | 'landscape' | 'landscape-primary' | 'landscape-secondary' | 'portrait' | 'portrait-primary' | 'portrait-secondary' | 'omit';
|
|
export declare function isValid(orientation: string): orientation is Orientation;
|
|
export declare function isLandscape(orientation: string): boolean;
|
|
export declare function isPortrait(orientation: string): boolean;
|