Type Alias: ConfigKey
type ConfigKey = {
conditions?: ConfigKeyConditions;
default?: unknown;
itemType: "key";
required?: boolean;
} & ConfigMetadata &
| {
dataType: "number" | "text" | "date" | "boolean" | "secret";
}
| {
dataType: "localization";
overrideLocales: string[];
}
| {
dataType: "option";
multiSelect?: boolean;
options: ConfigOption[];
};
Type Declaration
| Name | Type |
|---|---|
conditions? |
ConfigKeyConditions |
default? |
unknown |
itemType |
"key" |
required? |
boolean |