mirror of
https://github.com/hotomoe/hotomoe
synced 2024-12-18 08:38:11 +09:00
9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
export default function(opts) {
|
|
return new Promise<string>((res, rej) => {
|
|
const x = window.prompt(opts.title);
|
|
if (x) {
|
|
res(x);
|
|
}
|
|
});
|
|
}
|