mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-04 01:18:20 +02:00
17 lines
478 B
TypeScript
17 lines
478 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* The signal source type. Should be used along with `sourceId` to uniquely identify the resource that created this signal.
|
|
*/
|
|
export type SignalSchemaSource =
|
|
(typeof SignalSchemaSource)[keyof typeof SignalSchemaSource];
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
export const SignalSchemaSource = {
|
|
'signal-endpoint': 'signal-endpoint',
|
|
} as const;
|