import type { ViewId } from "./ViewId"; export type View = { id: ViewId; /** * The URL that can be used to open the view in the Dart web UI. */ htmlUrl: string; /** * The title, which is a short description of the view. */ title: string; /** * The description, which is a longer description of the view. */ description: string; };