(key: string)
| 123 | } |
| 124 | |
| 125 | getOptions(key: string) { |
| 126 | key = unescape(this.#unprefixKey(key)) |
| 127 | return this.values.get(key)?.options ?? ThemeOptions.NONE |
| 128 | } |
| 129 | |
| 130 | entries() { |
| 131 | if (!this.prefix) return this.values.entries() |
no test coverage detected