| 26 | } |
| 27 | |
| 28 | export interface IPaneviewReactProps extends PaneviewOptions { |
| 29 | onReady: (event: PaneviewReadyEvent) => void; |
| 30 | components: Record<string, React.FunctionComponent<IPaneviewPanelProps>>; |
| 31 | headerComponents?: Record< |
| 32 | string, |
| 33 | React.FunctionComponent<IPaneviewPanelProps> |
| 34 | >; |
| 35 | onDidDrop?(event: PaneviewDidDropEvent): void; |
| 36 | } |
| 37 | |
| 38 | function extractCoreOptions(props: IPaneviewReactProps): PaneviewOptions { |
| 39 | const coreOptions = PROPERTY_KEYS_PANEVIEW.reduce((obj, key) => { |
no outgoing calls
no test coverage detected
searching dependent graphs…