From 954244171108b039ce3e472e8eb09355c792af8d Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Sun, 6 Feb 2022 22:12:42 +0200 Subject: Initial commit --- index.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 index.ts (limited to 'index.ts') 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 + } + } +} -- cgit v1.3