mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-12 13:48:35 +02:00
17 lines
449 B
TypeScript
17 lines
449 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* A field to distinguish between release plans and release templates.
|
|
*/
|
|
export type ReleasePlanSchemaDiscriminator =
|
|
(typeof ReleasePlanSchemaDiscriminator)[keyof typeof ReleasePlanSchemaDiscriminator];
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
export const ReleasePlanSchemaDiscriminator = {
|
|
plan: 'plan',
|
|
} as const;
|