mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:21:08 +08:00
20 lines
319 B
TypeScript
20 lines
319 B
TypeScript
export interface Viewport {
|
|
name: string;
|
|
styles: ViewportStyles;
|
|
type: 'desktop' | 'mobile' | 'tablet';
|
|
/*
|
|
* @deprecated
|
|
* Deprecated option?
|
|
*/
|
|
default?: boolean;
|
|
}
|
|
|
|
export interface ViewportStyles {
|
|
height: string;
|
|
width: string;
|
|
}
|
|
|
|
export interface ViewportMap {
|
|
[key: string]: Viewport;
|
|
}
|