6 lines
146 B
TypeScript
6 lines
146 B
TypeScript
import type { LogEntry } from "../../plugos/sandbox.ts";
|
|
|
|
export function getLogs(): Promise<LogEntry[]> {
|
|
return syscall("sandbox.getLogs");
|
|
}
|