(value: string)
| 9 | protected _toString: (input: number) => string |
| 10 | |
| 11 | constructor(value: string) { |
| 12 | super(0) |
| 13 | this._toString = createInterpolator({ |
| 14 | output: [value, value], |
| 15 | }) |
| 16 | } |
| 17 | |
| 18 | /** @internal */ |
| 19 | static create(value: string) { |
nothing calls this directly
no test coverage detected