dumi-theme-mobile
Version:
dumi-theme-mobile
19 lines (18 loc) • 421 B
TypeScript
export interface IThemeConfig {
/**
* hd solution configurations
* @note base on https://github.com/umijs/umi-hd
*/
hd?: {
rules: {
minWidth?: number;
maxWidth?: number;
mode: 'vl' | 'flex' | 'vw' | 'vh';
options?: number | [number, number];
}[];
};
/**
* set device width in desktop
*/
deviceWidth?: number;
}