diff --git a/samples/client/petstore/typescript-fetch/builds/default-v3.0/models/UserType.ts b/samples/client/petstore/typescript-fetch/builds/default-v3.0/models/UserType.ts index 9704ad24269..ff15ec50d14 100644 --- a/samples/client/petstore/typescript-fetch/builds/default-v3.0/models/UserType.ts +++ b/samples/client/petstore/typescript-fetch/builds/default-v3.0/models/UserType.ts @@ -18,9 +18,9 @@ * @export */ export const UserType = { - Admin: 'admin' as 'admin', - User: 'user' as 'user' -}; + Admin: 'admin', + User: 'user' +} as const; export type UserType = typeof UserType[keyof typeof UserType];