| 15 | export type PaneState = 'normal' | 'maximize' | 'minimize' |
| 16 | |
| 17 | export interface PaneOptions { |
| 18 | id?: string |
| 19 | height?: number |
| 20 | minHeight?: number |
| 21 | dragEnabled?: boolean |
| 22 | order?: number |
| 23 | state?: PaneState |
| 24 | } |
| 25 | |
| 26 | export const PANE_MIN_HEIGHT = 30 |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected