Merge branch 'master'
[arvados-workbench2.git] / src / services / link-service / link-service.ts
index 49e6d1f2b8d617e44a528bb49e6d93bc9419b95c..4c12cd0ba9911f916b772ffcc3e9da925b6f9302 100644 (file)
@@ -2,11 +2,11 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import CommonResourceService from "../../common/api/common-resource-service";
-import { Link } from "../../models/link";
-import { AxiosInstance } from "../../../node_modules/axios";
+import { CommonResourceService } from "../../common/api/common-resource-service";
+import { LinkResource } from "../../models/link";
+import { AxiosInstance } from "axios";
 
-export default class LinkService<T extends Link = Link> extends CommonResourceService<T> {
+export class LinkService extends CommonResourceService<LinkResource> {
     constructor(serverApi: AxiosInstance) {
         super(serverApi, "links");
     }