diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-04-21 16:40:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-21 16:40:10 -0400 |
commit | 9dfebbc9496138efbeedc431068f41662c780f3e (patch) | |
tree | c3718c3dc132d11c08c8fc18933daebf886bf787 /js/repl.ts | |
parent | 6cded14bdf313762956d4d5361cfe8115628b535 (diff) |
Fix eslint warnings (#2151)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
Diffstat (limited to 'js/repl.ts')
-rw-r--r-- | js/repl.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/repl.ts b/js/repl.ts index e521bf581..be162cb7e 100644 --- a/js/repl.ts +++ b/js/repl.ts @@ -16,12 +16,12 @@ const helpMsg = [ const replCommands = { exit: { - get() { + get(): void { exit(0); } }, help: { - get() { + get(): string { return helpMsg; } } |