Type Alias ConceptCollection<Locale>

ConceptCollection<Locale>: {
    items: Concept<Locale>[];
    limit: number;
    pages?: {
        next?: string;
        prev?: string;
    };
    sys: {
        type: "Array";
    };
}

Type Parameters