(varName: string, seriesIdx?: number)
| 110 | const TPL_VAR_ALIAS = ['a', 'b', 'c', 'd', 'e', 'f', 'g']; |
| 111 | |
| 112 | const wrapVar = function (varName: string, seriesIdx?: number): string { |
| 113 | return '{' + varName + (seriesIdx == null ? '' : seriesIdx) + '}'; |
| 114 | }; |
| 115 | |
| 116 | export interface TplFormatterParam extends Dictionary<any> { |
| 117 | // Param name list for mapping `a`, `b`, `c`, `d`, `e` |
no outgoing calls
no test coverage detected
searching dependent graphs…