diff options
Diffstat (limited to 'src/web/app/mobile/api/input.ts')
| -rw-r--r-- | src/web/app/mobile/api/input.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/web/app/mobile/api/input.ts b/src/web/app/mobile/api/input.ts new file mode 100644 index 0000000000..fcff68cfb6 --- /dev/null +++ b/src/web/app/mobile/api/input.ts @@ -0,0 +1,5 @@ +export default function(opts) { + return new Promise<string>((res, rej) => { + alert('input not implemented yet'); + }); +} |