mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-04 11:17:02 +02:00
19 lines
442 B
TypeScript
19 lines
442 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* A template for a link that can be automatically added to new feature flags.
|
|
*/
|
|
export interface ProjectLinkTemplateSchema {
|
|
/**
|
|
* The title of the link.
|
|
* @nullable
|
|
*/
|
|
title?: string | null;
|
|
/** The URL to use as a template. Can contain {{project}} or {{feature}} as placeholders. */
|
|
urlTemplate: string;
|
|
}
|