import { Collection } from "./Api";

export type Bookmark = {
  "@id": string,
  id: number,
  name: string,
  public: boolean,
  url: string,
  rateAverage: number,
  owner: string,
};

export type BookmarksCollection = Collection<Bookmark>;