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