UNPKG

@strapi/types

Version:

Shared typescript types for Strapi internal use

13 lines 344 B
export interface FeaturesConfig { future?: Record<string, unknown>; } export interface FeaturesService { /** * This is the features.(js|ts) file in the user project. */ config: FeaturesConfig | undefined; future: { isEnabled: (futureFlagName: string) => boolean; }; } //# sourceMappingURL=features.d.ts.map