summaryrefslogtreecommitdiff
path: root/src/server/web/app/mobile/api/input.ts
blob: 38d0fb61ebed94ae76a50fdb0f9bff9ffdbc3473 (plain)
1
2
3
4
5
6
7
8
export default function(opts) {
	return new Promise<string>((res, rej) => {
		const x = window.prompt(opts.title);
		if (x) {
			res(x);
		}
	});
}