| 10 | } |
| 11 | |
| 12 | export interface GraphicDefinition { |
| 13 | id: string; |
| 14 | name: string; |
| 15 | keywords: string[]; |
| 16 | params: ParamDefinition[]; |
| 17 | render(context: GraphicRenderContext): void; |
| 18 | } |
| 19 | |
| 20 | export interface GraphicInstance { |
| 21 | definitionId: string; |
no outgoing calls
no test coverage detected