Update flag endpoints

This commit is contained in:
Andrew Kingston 2024-12-05 15:31:49 +00:00
parent 78f1690cb9
commit 2b06a7d44e
No known key found for this signature in database
1 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,8 @@ import { BaseAPIClient } from "./types"
export interface FlagEndpoints {
getFlags: () => Promise<Flags>
// Missing request or response types
updateFlag: (flag: string, value: any) => Promise<{ message: string }>
toggleUiFeature: (value: string) => Promise<{ message: string }>
}