@platform/cell.client
Version:
A strongly typed HTTP client for operating with a CellOS service end-point.
17 lines (16 loc) • 515 B
TypeScript
import { t } from '../common';
declare type IHttpClientCellLinksArgs = {
links: t.ICellData['links'];
urls: t.IUrls;
http: t.IHttp;
};
export declare class HttpClientCellLinks implements t.IHttpClientCellLinks {
static create(args: IHttpClientCellLinksArgs): t.IHttpClientCellLinks;
private constructor();
private readonly args;
readonly list: t.IHttpClientCellLink[];
get files(): t.IHttpClientCellLinkFile[];
toObject(): t.IUriMap | undefined;
private toLink;
}
export {};