import type Link from "../models/link.model"; import type { Dictionary, nullish } from "../types/global.types"; import type Relationship from "./relationship.model"; import ResourceIdentifier, { type ResourceIdentifierOptions } from "./resource-identifier.model"; /** @internal */ export interface ResourceOptions extends ResourceIdentifierOptions { attributes?: Partial; links?: Dictionary; relationships?: Record; } export default class Resource> extends ResourceIdentifier { attributes?: Partial; links?: Dictionary; relationships?: Record; constructor(id: string, type: string, options: ResourceOptions); } //# sourceMappingURL=resource.model.d.ts.map