| 4 | // type SVGParserBindings = Record<string, Array<SVGParserBinding>>; |
| 5 | |
| 6 | interface SVGParserBinding { |
| 7 | name: string |
| 8 | id: string |
| 9 | path: string[], |
| 10 | expression: string, |
| 11 | triggers: string[], |
| 12 | isFunction: boolean, |
| 13 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 14 | args: any[] |
| 15 | } |
| 16 | interface SVGParserResult { |
| 17 | markup: dia.MarkupJSON; |
| 18 | attrs: dia.Cell.Selectors; |
nothing calls this directly
no outgoing calls
no test coverage detected