1
0
silverbullet/packages/plugos-syscall/syscall.ts

6 lines
121 B
TypeScript
Raw Normal View History

2022-03-07 09:21:02 +00:00
declare global {
2022-03-24 09:48:56 +00:00
function syscall(name: string, ...args: any[]): Promise<any>;
2022-03-14 09:07:38 +00:00
}
2022-03-24 09:48:56 +00:00
export const syscall = self.syscall;