import type { LinksCollection } from "./linksCollection"; export interface IId { Id: string; } export interface IIdName { Id: string; Name: string; } export declare type Resource = {}; export interface ResourceWithLinks { Links: LinksCollection; } export interface ResourceWithId extends ResourceWithLinks, IId { Id: string; }