Type Alias: SimpleConfigKey
type SimpleConfigKey = Extract<ConfigKey, {
dataType: "number" | "text" | "date" | "boolean" | "secret";
}>;
type SimpleConfigKey = Extract<ConfigKey, {
dataType: "number" | "text" | "date" | "boolean" | "secret";
}>;