| 1 | import { TimedLine } from './Localization'; |
| 2 | |
| 3 | export interface IRender { |
| 4 | start: (args:TemplateVariables) => void; |
| 5 | stop: () => void; |
| 6 | lineBegin: (line:TimedLine) => void; |
| 7 | lineEnd: () => void; |
| 8 | } |
| 9 | |
| 10 | export interface TemplateVariables { |
| 11 | [key:string]: any |
nothing calls this directly
no outgoing calls
no test coverage detected