UNPKG

ts-japi

Version:

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

15 lines 337 B
import type 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