UNPKG

@strapi/types

Version:

Shared typescript types for Strapi internal use

13 lines 327 B
export interface FeaturesConfig { future?: object; } 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