UNPKG

@strapi/types

Version:

Shared typescript types for Strapi internal use

11 lines 345 B
import type { SchemaDefinition } from '../../../struct'; export interface ContentTypes { /** * Only the schema property is used and available * See loader in packages/core/strapi/src/core/loaders/plugins/index.ts * */ [key: string]: { schema: SchemaDefinition; }; } //# sourceMappingURL=content-types.d.ts.map