(themeKeys: ThemeKey[])
| 108 | } |
| 109 | |
| 110 | get(themeKeys: ThemeKey[]): string | null { |
| 111 | for (let key of themeKeys) { |
| 112 | let value = this.values.get(key) |
| 113 | if (value) { |
| 114 | return value.value |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | return null |
| 119 | } |
| 120 | |
| 121 | hasDefault(key: string): boolean { |
| 122 | return (this.getOptions(key) & ThemeOptions.DEFAULT) === ThemeOptions.DEFAULT |
no outgoing calls