fix types
All checks were successful
CI / Build All Platforms (Tag/Main only) (push) Has been skipped
CI / Type Check & Lint (push) Successful in 7s
CI / Build Test (Current Platform) (push) Successful in 7s

This commit is contained in:
2025-10-19 12:57:17 +00:00
parent 4faa10c494
commit dff0ea610b
7 changed files with 77 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
import process from 'node:process';
import { Nupst } from '../nupst.ts';
import { logger } from '../logger.ts';
import * as helpers from '../helpers/index.ts';

View File

@@ -1,3 +1,4 @@
import process from 'node:process';
import { execSync } from "node:child_process";
import { Nupst } from '../nupst.ts';
import { logger } from '../logger.ts';

View File

@@ -1,3 +1,4 @@
import process from 'node:process';
import { execSync } from "node:child_process";
import { Nupst } from '../nupst.ts';
import { logger } from '../logger.ts';

View File

@@ -1,3 +1,4 @@
import process from 'node:process';
import * as fs from "node:fs";
import * as path from "node:path";
import { exec, execFile } from "node:child_process";

View File

@@ -1,3 +1,4 @@
import process from 'node:process';
import { promises as fs } from "node:fs";
import { execSync } from "node:child_process";
import { NupstDaemon } from './daemon.ts';