(defaultValue: WithAsyncValue<Exclude<T, undefined>>)
| 124 | } |
| 125 | |
| 126 | private resolveDefault<T>(defaultValue: WithAsyncValue<Exclude<T, undefined>>): T | Promise<T> { |
| 127 | //@ts-ignore |
| 128 | return (defaultValue?.asyncValue?.() || defaultValue) as T | Promise<T>; |
| 129 | } |
| 130 | |
| 131 | private async transferSyncToLocal<T>( |
| 132 | key: SystemConfigKey, |
no test coverage detected