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