Type Alias: IParseDynamicOptions<AllowDots>
ts
type IParseDynamicOptions<AllowDots> = AllowDots extends true
? {
allowDots?: AllowDots;
decodeDotInKeys?: boolean;
}
: {
allowDots?: boolean;
decodeDotInKeys?: false;
};Type Parameters
| Type Parameter |
|---|
AllowDots extends BooleanOptional |