create-projeto-estudos
Advanced tools
Comparing version
declare global { | ||
export function readInt(text?: string | null): number; | ||
export function readFloat(text?: string | null): number; | ||
export function readString(text?: string | null): number; | ||
export function readBool(text?: string | null): number; | ||
export function readString(text?: string | null): string; | ||
export function readBool(text?: string | null): boolean; | ||
export function write(text?: any): void; | ||
@@ -7,0 +7,0 @@ export function writeLine(text?: any): void; |
@@ -10,11 +10,11 @@ const { | ||
globalThis.readInt = readInt; | ||
globalThis.read = read; | ||
globalThis.readString = read; | ||
globalThis.readBool = readBool; | ||
globalThis.readFloat = readFloat; | ||
globalThis.readInt = (msg = "") => readInt(msg); | ||
globalThis.read = (msg = "") => read(msg); | ||
globalThis.readString = (msg = "") => read(msg); | ||
globalThis.readBool = (msg = "") => readBool(msg); | ||
globalThis.readFloat = (msg = "") => readFloat(msg); | ||
globalThis.write = write; | ||
globalThis.writeLine = writeline; | ||
globalThis.writeline = writeline; | ||
console.log("Iniciando...\n") | ||
process.stdout.write('\x1Bc') | ||
console.log("Iniciando...\n"); |
{ | ||
"name": "create-projeto-estudos", | ||
"version": "0.1.8", | ||
"version": "0.1.9", | ||
"bin": "./index.js", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
463055
0.03%161
1.26%