You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exportinterfaceOverridableDto<T>{value?: T;isOverridden: boolean;}exportconstOverridableDtoSchema=z.object({value: z.any().nullable(),// Would actually be nice to have a better type here, but any works for nowisOverridden: z.boolean(),});//import{OverridableDto,OverridableDtoSchema}from'./overridable-dto';exportinterfaceItemResponseDto{originalId: string;name: OverridableDto<string>;}
The text was updated successfully, but these errors were encountered:
Input:
Expected output:
The text was updated successfully, but these errors were encountered: