From db7ae846f732b13b9e78f4208296bb911e48bb71 Mon Sep 17 00:00:00 2001 From: Nulo Date: Thu, 2 Feb 2023 18:59:13 -0300 Subject: [PATCH] qemu: arreglar types --- qemu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu.ts b/qemu.ts index 1ecdbd9..b49a1fb 100644 --- a/qemu.ts +++ b/qemu.ts @@ -7,7 +7,7 @@ import { Kernel } from "./kernel.js"; export async function runQemu( squashfs: string, kernel: Kernel, - { graphic, noShutdown }: { graphic: boolean; noShutdown: boolean } = { + { graphic, noShutdown }: { graphic?: boolean; noShutdown?: boolean } = { graphic: true, noShutdown: false, }