UNPKG

v3mt

Version:

A CLI toolkit for managing and deploying Victoria 3 mods, including sending mod files to the game, launching the game, and more.

9 lines (8 loc) 318 B
import { confirm } from '@inquirer/prompts'; export default async function requestOSConfirmation() { const accept_os_warning = await confirm({ message: `This application has not been fully tested for your operating system. Continue anyway?`, default: false, }); return accept_os_warning; }