import { ResourceAttributes, ResourceRelationships, ResourceSchema } from "./types"; export default class Resource { static readonly type: any; static schema: ResourceSchema; id?: string; type: string; attributes: ResourceAttributes; relationships: ResourceRelationships; constructor({ id, attributes, relationships }: { id?: string; attributes?: ResourceAttributes; relationships?: ResourceRelationships; }); }