core-api: remove FeatureFlagName type

This commit is contained in:
Patrik Oldsberg
2020-10-28 16:49:09 +01:00
parent 5adfc005e8
commit e64fc519b8
5 changed files with 13 additions and 18 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ can use this to split out logic in your code for manual A/B testing, etc.
```typescript
export type FeatureFlagsHooks = {
register(name: FeatureFlagName): void;
register(name: string): void;
};
```