mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-13 11:17:26 +02:00
16 lines
326 B
TypeScript
16 lines
326 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* An optional payload attached to the variant.
|
|
*/
|
|
export type PlaygroundFeatureSchemaVariantPayload = {
|
|
/** The format of the payload. */
|
|
type: string;
|
|
/** The payload value stringified. */
|
|
value: string;
|
|
};
|