UNPKG

qlik-saas-api

Version:

Interact with Qlik Sense SaaS REST API

27 lines (26 loc) 442 B
export interface ILinks { collection: { href: string; }; next: { href: string; }; prev: { href: string; }; self: { href: string; }; open: { href: string; }; thumbnail: { href: string; }; } export interface ILinksShort { self: { href: string; }; } export type MakeOptional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;