qemu: arreglar types

This commit is contained in:
Cat /dev/Nulo 2023-02-02 18:59:13 -03:00
parent a74af935ac
commit db7ae846f7

View file

@ -7,7 +7,7 @@ import { Kernel } from "./kernel.js";
export async function runQemu( export async function runQemu(
squashfs: string, squashfs: string,
kernel: Kernel, kernel: Kernel,
{ graphic, noShutdown }: { graphic: boolean; noShutdown: boolean } = { { graphic, noShutdown }: { graphic?: boolean; noShutdown?: boolean } = {
graphic: true, graphic: true,
noShutdown: false, noShutdown: false,
} }