UNPKG

@typedly/settings

Version:

A TypeScript type definitions package for settings.

10 lines (9 loc) 241 B
/** * @description Represents the setting for a value configuration. * @export * @interface ValueSetting * @template Value The type of the value to be validated. */ export interface ValueSetting<Value> { value: Value | undefined; }