UNPKG

ts-japi

Version:

A highly-modular (typescript-friendly)-framework agnostic library for serializing data to the JSON:API specification

15 lines 332 B
import Meta from './meta.model'; export default class Link { url: URL; meta?: Meta; constructor(href: string, meta?: Meta); toJSON: () => string | { href: string; meta: Meta; }; toString(): string | { href: string; meta: Meta; }; } //# sourceMappingURL=link.model.d.ts.map