Expand description
interface DisplayModeOptions<T extends string> {
detect: (width: number, height: number, isMobile: boolean) => T;
initial?: T;
}interface DisplayModeOptions<T extends string> {
detect: (width: number, height: number, isMobile: boolean) => T;
initial?: T;
}
Options for display mode detection. See initDisplayMode