MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at type-hints-typescript 12 lines 291 B view raw
1declare module 'ant:shell' { 2 interface ShellResult { 3 stdout: string; 4 stderr: string; 5 exitCode: number; 6 text(): string; 7 lines(): string[]; 8 } 9 10 function $(strings: TemplateStringsArray, ...values: unknown[]): ShellResult; 11 function $(command: string): ShellResult; 12}