rudeshark.net/src/web/app/mobile/api/input.ts

6 lines
121 B
TypeScript
Raw Normal View History

2018-02-21 18:00:30 +01:00
export default function(opts) {
return new Promise<string>((res, rej) => {
alert('input not implemented yet');
});
}