diff options
| author | Uri Shaked | 2019-12-07 22:18:00 +0200 |
|---|---|---|
| committer | Uri Shaked | 2019-12-07 22:18:00 +0200 |
| commit | 07ddaa7d22f31de5d5c3b9c6d4626c59cf25a244 (patch) | |
| tree | 12a64bfbc4ea18997923f14b44725cb0e118c949 /demo/src/compile.ts | |
| parent | feat: publish both CJS and ESM to npm (diff) | |
| download | avr8js-07ddaa7d22f31de5d5c3b9c6d4626c59cf25a244.tar.gz avr8js-07ddaa7d22f31de5d5c3b9c6d4626c59cf25a244.tar.bz2 avr8js-07ddaa7d22f31de5d5c3b9c6d4626c59cf25a244.zip | |
refactor: tslint → eslint
Diffstat (limited to 'demo/src/compile.ts')
| -rw-r--r-- | demo/src/compile.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demo/src/compile.ts b/demo/src/compile.ts index 4fca6c6..31dda0a 100644 --- a/demo/src/compile.ts +++ b/demo/src/compile.ts @@ -1,6 +1,6 @@ const url = 'https://wokwi-hexi-73miufol2q-uc.a.run.app'; -export interface IHexiResult { +export interface HexiResult { stdout: string; stderr: string; hex: string; @@ -16,5 +16,5 @@ export async function buildHex(source: string) { }, body: JSON.stringify({ sketch: source }) }); - return (await resp.json()) as IHexiResult; + return (await resp.json()) as HexiResult; } |
