X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e1605f7c93aeb41ae31e0dd88a9afd8709136b62..394ebdfd13fe40a7096f484c46a353d2537f4c9a:/src/models/link.ts diff --git a/src/models/link.ts b/src/models/link.ts index 785d531cf7..828dced232 100644 --- a/src/models/link.ts +++ b/src/models/link.ts @@ -2,8 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { TagProperty } from "~/models/tag"; -import { Resource, ResourceKind } from '~/models/resource'; +import { Resource, ResourceKind } from 'models/resource'; export interface LinkResource extends Resource { headUuid: string; @@ -12,7 +11,7 @@ export interface LinkResource extends Resource { tailKind: string; linkClass: string; name: string; - properties: TagProperty; + properties: any; kind: ResourceKind.LINK; } @@ -21,4 +20,4 @@ export enum LinkClass { TAG = 'tag', PERMISSION = 'permission', PRESET = 'preset', -} \ No newline at end of file +}