Interface ISpacesExt

interface ISpacesExt {
    data: ISpace[];
    links: {
        next: {
            href: string;
        };
        prev: {
            href: string;
        };
        self: {
            href: string;
        };
    };
    meta: {
        count: number;
    };
}

Properties

Properties

data: ISpace[]
links: {
    next: {
        href: string;
    };
    prev: {
        href: string;
    };
    self: {
        href: string;
    };
}

Type declaration

  • next: {
        href: string;
    }
    • href: string
  • prev: {
        href: string;
    }
    • href: string
  • self: {
        href: string;
    }
    • href: string
meta: {
    count: number;
}

Type declaration

  • count: number