Comparing version 0.0.4 to 0.0.5
@@ -1,1 +0,3 @@ | ||
export declare const test: () => string; | ||
export declare const mobot: { | ||
readonly app: () => void; | ||
}; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.test = void 0; | ||
const test = () => { | ||
return "test"; | ||
exports.mobot = void 0; | ||
exports.mobot = { | ||
app: () => { | ||
window.iacConfig = { message: `Hello from Mobot in the web!` }; | ||
}, | ||
}; | ||
exports.test = test; |
{ | ||
"name": "mobot-js", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "build": "tsc", |
@@ -1,3 +0,5 @@ | ||
export const test = () => { | ||
return "test"; | ||
}; | ||
export const mobot = { | ||
app: () => { | ||
(window as any).iacConfig = { message: `Hello from Mobot in the web!` }; | ||
}, | ||
} as const; |
@@ -5,3 +5,3 @@ { | ||
"module": "nodenext", | ||
"lib": ["ESNext"], | ||
"lib": ["ESNext", "DOM"], | ||
"declaration": true, | ||
@@ -8,0 +8,0 @@ "outDir": "./dist", |
3625
102