import type { Schema } from './schema'; /** * Represents a generic Schema before being loaded by Strapi (e.g. app or user defined schemas) * * @internal */ export type SchemaDefinition = Omit & { attributes: Record>; }; //# sourceMappingURL=schema-definition.d.ts.map