Interface DrupalView<T>

interface DrupalView<T = Record<string, any>[]> {
    id: string;
    links: JsonApiLinks;
    meta: { count: number; [key: string]: any };
    results: T;
}

Type Parameters

  • T = Record<string, any>[]

Properties

Properties

id: string
meta: { count: number; [key: string]: any }
results: T