Add typescript paths to top level folders
[arvados-workbench2.git] / src / services / link-service / link-service.ts
index 4c12cd0ba9911f916b772ffcc3e9da925b6f9302..8724904ef2a5eb0d61ed9ba101f82d5eda3bff60 100644 (file)
@@ -2,12 +2,12 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { CommonResourceService } from "../../common/api/common-resource-service";
-import { LinkResource } from "../../models/link";
+import { CommonResourceService } from "~/common/api/common-resource-service";
+import { LinkResource } from "~/models/link";
 import { AxiosInstance } from "axios";
 
 export class LinkService extends CommonResourceService<LinkResource> {
     constructor(serverApi: AxiosInstance) {
         super(serverApi, "links");
     }
-}
\ No newline at end of file
+}