UNPKG
@typedly/settings
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.0
0.0.1
A TypeScript type definitions package for settings.
github.com/typedly/settings
typedly/settings
@typedly/settings
/
interface
/
value-setting.interface.d.ts
10 lines
(9 loc)
•
241 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** *
@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; }