A simple CLI tool to spin up OpenBSD virtual machines using QEMU with minimal fuss.

Add type annotation for EMPTY_DISK_SIZE_KB constant for improved type safety

+1 -1
+1 -1
src/constants.ts
··· 1 1 export const CONFIG_DIR: string = `${Deno.env.get("HOME")}/.openbsd-up`; 2 2 export const DB_PATH: string = `${CONFIG_DIR}/state.sqlite`; 3 3 export const LOGS_DIR: string = `${CONFIG_DIR}/logs`; 4 - export const EMPTY_DISK_SIZE_KB = 100; 4 + export const EMPTY_DISK_SIZE_KB: number = 100;