diff options
Diffstat (limited to 'index.ts')
| -rw-r--r-- | index.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..2c162c1 --- /dev/null +++ b/index.ts @@ -0,0 +1,15 @@ +export namespace RunnerApiSubmitRequest { + export const path = "/submit" + export interface Body { + source: string + } +} + +export namespace RunnerApiSubmitResponse { + export interface Body { + result: { + stdout: string + stderr: string + } + } +} |
