UNPKG

pwa-synergy-api

Version:

synergy application api

8 lines 243 B
import TabPanel from './TabPanel'; export type Orientation = 'Vertical' | 'Horizontal'; export default interface Panel { orientation: Orientation; size?: number; children: (Panel | TabPanel)[]; } //# sourceMappingURL=Panel.d.ts.map