[WEB-5416] fix: Use proper import syntax (#8105)

This commit is contained in:
Aaron 2025-11-13 04:11:06 -08:00 committed by GitHub
parent 34c0e81d8e
commit 95c742244e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
526 changed files with 1002 additions and 923 deletions

View file

@ -1,5 +1,5 @@
import { API_BASE_URL } from "@plane/constants";
import { IApiToken } from "@plane/types";
import type { IApiToken } from "@plane/types";
import { APIService } from "../api.service";
export class APITokenService extends APIService {

View file

@ -1,5 +1,5 @@
import { API_BASE_URL } from "@plane/constants";
import { IWebhook } from "@plane/types";
import type { IWebhook } from "@plane/types";
import { APIService } from "../api.service";
/**