Skip to main content
Home

SwissKnife is a Deno module that allows you to do some useful tasks on Windows OS using NirCmd v2.86

This package works with Deno
This package works with Deno
JSR Score
94%
Published
a year ago (1.8.0)
function infoBox
infoBox(
title: string,
text: string,
): Promise<number>

InfoBox dialog

Examples

Example 1

import * as swissKnife from "https://deno.land/x/swissKnife/mod.ts"
await swissKnife.infoBox("Deno", "Deno is great!")

Parameters

title: string

InfoBox title

text: string

InfoBox message

Return Type

the process exit code

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@fakoua/swiss-knife

Import symbol

import { infoBox } from "@fakoua/swiss-knife";
or

Import directly with a jsr specifier

import { infoBox } from "jsr:@fakoua/swiss-knife";