Type Alias: ArtistResource
type ArtistResource = Resource<ArtistAttributes> & {
type: "artists";
relationships?: ArtistRelationships;
views?: ArtistViews;
meta?: Record<string, unknown>;
};
Defined in: endpoints/Artists/types.ts:165
Type Declaration
| Name | Type | Defined in |
|---|---|---|
type | "artists" | endpoints/Artists/types.ts:166 |
relationships? | ArtistRelationships | endpoints/Artists/types.ts:167 |
views? | ArtistViews | endpoints/Artists/types.ts:168 |
meta? | Record<string, unknown> | endpoints/Artists/types.ts:169 |