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.
17 lines
492 B
17 lines
492 B
import { Orientation } from './Orientation';
|
|
interface Device {
|
|
names: string[];
|
|
width: number;
|
|
height: number;
|
|
scale: number;
|
|
isTablet: boolean;
|
|
}
|
|
export declare function assembleOrientationMedia(width: number, height: number, scale: number, orientation: string): string;
|
|
export declare function getDevices({ orientation, supportsTablet, }?: {
|
|
orientation?: Orientation;
|
|
supportsTablet?: boolean;
|
|
}): (Device & {
|
|
orientations: Orientation[];
|
|
})[];
|
|
export {};
|