Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 22x 22x 243x 245x 8x 5x 3x | import { OptionalValueSupplier, ValueSupplier } from './value'
/**
* {@link Screen} 生成時に利用する設定値
*/
export interface ScreenConfig {
/**
* ライブラリ利用者が自由に使えるフィールドです
*/
vars: unknown
}
export class ScreenConfigSupplier implements ValueSupplier<ScreenConfig> {
private readonly vars: OptionalValueSupplier<unknown>
constructor (initial: ScreenConfig) {
this.vars = OptionalValueSupplier.create(initial.vars)
}
get (): ScreenConfig {
return { vars: this.vars.get() }
}
setIf (obj: Partial<ScreenConfig>) {
this.vars.setIf(obj.vars)
}
default (): ScreenConfig {
return { vars: this.vars.default() }
}
defaultIf (obj: Partial<ScreenConfig>) {
this.vars.defaultIf(obj.vars)
}
}
|