@sanity/dashboard
Version:
Tool for rendering dashboard widgets
22 lines (17 loc) • 495 B
text/typescript
import {ComponentClass, FunctionComponent} from 'react'
export interface DashboardWidget {
name: string
type?: '__experimental_group'
component: FunctionComponent<any> | ComponentClass<any>
layout?: LayoutConfig
widgets?: DashboardWidget[]
}
export type LayoutSize = 'auto' | 'small' | 'medium' | 'large' | 'full'
export interface LayoutConfig {
width?: LayoutSize
height?: LayoutSize
}
export interface DashboardConfig {
widgets: DashboardWidget[]
layout?: LayoutConfig
}