1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-18 16:48:09 +09:00
hotomoe/src/client/app/mobile/api/input.ts

9 lines
148 B
TypeScript
Raw Normal View History

2018-02-22 02:00:30 +09:00
export default function(opts) {
return new Promise<string>((res, rej) => {
2018-03-07 18:55:02 +09:00
const x = window.prompt(opts.title);
if (x) {
res(x);
}
2018-02-22 02:00:30 +09:00
});
}