1
0
silverbullet/syscall/plugos-syscall/syscall.ts
Zef Hemel 561aa6891f
Migrate to Deno (#86)
Big bang migration to Deno 🤯
2022-10-10 14:50:21 +02:00

6 lines
121 B
TypeScript

declare global {
function syscall(name: string, ...args: any[]): Promise<any>;
}
export const syscall = self.syscall;