| 90 | ]; |
| 91 | |
| 92 | abstract class Color implements IColor { |
| 93 | abstract toFormat(format: ColorFormat): IColor; |
| 94 | abstract toString(format: ColorFormat | 'css'): string; |
| 95 | abstract clone(): IColor; |
nothing calls this directly
no outgoing calls
no test coverage detected