| 32 | } from '@jsonforms/core'; |
| 33 | |
| 34 | export interface ExampleDescription { |
| 35 | name: string; |
| 36 | label: string; |
| 37 | data: any; |
| 38 | schema: JsonSchema; |
| 39 | uischema: UISchemaElement; |
| 40 | uischemas?: JsonFormsUISchemaRegistryEntry[]; |
| 41 | config?: any; |
| 42 | actions?: { label: string; apply: (props: StateProps) => any }[]; |
| 43 | i18n?: JsonFormsI18nState; |
| 44 | readonly?: boolean; |
| 45 | } |
| 46 | |
| 47 | export interface StateProps { |
| 48 | data: any; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…