@strapi/types
Version:
Shared typescript types for Strapi internal use
15 lines • 368 B
TypeScript
export interface FeaturesConfig {
future?: {
unstableMediaLibrary?: boolean;
};
}
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