19 lines
210 B
Nix
19 lines
210 B
Nix
# Obviously wrong typed
|
|
{
|
|
config.either = {
|
|
int = "foo";
|
|
};
|
|
|
|
config.eitherBehindNullor = {
|
|
int = "foo";
|
|
};
|
|
|
|
config.oneOf = {
|
|
int = "foo";
|
|
};
|
|
|
|
config.number = {
|
|
str = "foo";
|
|
};
|
|
}
|