Comparing version 0.0.11 to 0.0.12
export declare const mobot: { | ||
readonly app: () => void; | ||
readonly app: (config: { | ||
message: string; | ||
}) => void; | ||
}; |
@@ -5,5 +5,7 @@ "use strict"; | ||
exports.mobot = { | ||
app: () => { | ||
window.iacConfig = { message: `Hello from Mobot in the web!` }; | ||
app: (config) => { | ||
window.iacConfig = { | ||
message: `Hello ${config.message} from Mobot in the web!`, | ||
}; | ||
}, | ||
}; |
{ | ||
"name": "mobot-js", | ||
"version": "0.0.11", | ||
"version": "0.0.12", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "build": "tsc", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
838
15