IBookmark: ICreateBookmark & {
    created?: string;
    updated?: string;
    url: string;
}

Interface defining the shape of a bookmark object. Extends ICreateBookmark and adds url, created, and updated fields.

Type declaration

  • Optional created?: string
  • Optional updated?: string
  • url: string