1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-13 13:48:59 +02:00

feat: fix type typo

This commit is contained in:
Thomas Heartman 2023-11-23 14:44:32 +01:00
parent af23c0df39
commit 63b569981d
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78

View File

@ -8,7 +8,7 @@ type NewStrategy = {
changeRequest: ChangeRequestInfo;
};
type ExistingStrategy = NewStrategy | { id: string };
type ExistingStrategy = NewStrategy & { id: string };
export type ChangeRequestStrategy = NewStrategy | ExistingStrategy;