import type { CollectionSchema } from '@forestadmin/datasource-toolkit'; import { CollectionDecorator } from '@forestadmin/datasource-toolkit'; /** * This decorator allows to override parts of the collections schema. * It can be used to toggle off collection level capabilities for performance * (for now, list-view counts and the search bar) */ export default class SchemaCollectionDecorator extends CollectionDecorator { private schemaOverride; overrideSchema(value: Partial): void; protected refineSchema(subSchema: CollectionSchema): CollectionSchema; } //# sourceMappingURL=collection.d.ts.map