| 2 | import { createContext } from '@music163/tango-helpers'; |
| 3 | |
| 4 | interface CustomVariableData { |
| 5 | key: string; |
| 6 | title: string; |
| 7 | children?: CustomVariableData[]; |
| 8 | [key: string]: any; |
| 9 | } |
| 10 | |
| 11 | export interface ITangoEngineContext { |
| 12 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected