| 27 | } |
| 28 | |
| 29 | interface PluginScope { |
| 30 | [key: string]: any; |
| 31 | _props: string[]; |
| 32 | _pt: PropTween; |
| 33 | add(...args: any[]): PropTween; // TODO: Add signature |
| 34 | name: string; |
| 35 | init: PluginInit; |
| 36 | kill: PluginKill; |
| 37 | render: PluginRender; |
| 38 | } |
| 39 | |
| 40 | interface PluginStatic { |
| 41 | [key: string]: any; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…