X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b3ffad71aa43fcb8db2d2c7a20ee0ef588e37e04..d366e025618106edb2419941a041cd0f4214b245:/src/models/link.ts diff --git a/src/models/link.ts b/src/models/link.ts index 0b5053dcb7..c9e085be49 100644 --- a/src/models/link.ts +++ b/src/models/link.ts @@ -3,17 +3,19 @@ // SPDX-License-Identifier: AGPL-3.0 import { Resource } from "./resource"; +import { TagProperty } from "~/models/tag"; export interface LinkResource extends Resource { headUuid: string; tailUuid: string; linkClass: string; name: string; - properties: any; + properties: TagProperty; } export enum LinkClass { STAR = 'star', TAG = 'tag', PERMISSION = 'permission', + PRESET = 'preset', } \ No newline at end of file