Type Alias ComponentSlotDefinition

ComponentSlotDefinition: {
    allowedResources?: {
        allowedTypes: string[];
        source: typeof COMPONENT_TYPE_ALLOWED_RESOURCE_SOURCE;
        type: "Contentful:Component";
    }[];
    id: string;
    name: string;
    required: boolean;
    validations: {
        size?: {
            max?: number;
            min?: number;
        };
    }[];
}