chore(eslint): enforce the use of import type

This commit is contained in:
LuanRT
2023-04-28 22:35:09 -03:00
parent 75ea09dde8
commit 3a7e58d2b9
45 changed files with 106 additions and 83 deletions

View File

@@ -8,10 +8,10 @@ import {
FormData,
File
} from 'undici';
import { ICache } from '../types/Cache.js';
import type { ICache } from '../types/Cache.js';
import { Platform } from '../utils/Utils.js';
import crypto from 'crypto';
import { FetchFunction } from '../types/PlatformShim.js';
import type { FetchFunction } from '../types/PlatformShim.js';
import path from 'path';
import os from 'os';
import fs from 'fs/promises';