fix(classes.base): Use type-only import for DockerHost in classes.base to avoid runtime side-effects

This commit is contained in:
2025-11-24 13:06:44 +00:00
parent 8d043d20a8
commit 5691e5fb78
3 changed files with 9 additions and 2 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiclient.xyz/docker',
version: '3.0.0',
version: '3.0.1',
description: 'Provides easy communication with Docker remote API from Node.js, with TypeScript support.'
}

View File

@@ -1,4 +1,4 @@
import { DockerHost } from './classes.host.js';
import type { DockerHost } from './classes.host.js';
/**
* Abstract base class for all Docker resources.