@contential/chat
Advanced tools
Comparing version 0.0.0 to 0.0.1-test
declare const chat: () => void; | ||
declare const sendMessage: () => void; | ||
export { chat, chat as default }; | ||
export { chat, chat as default, sendMessage }; |
@@ -24,12 +24,17 @@ "use strict"; | ||
chat: () => chat, | ||
default: () => src_default | ||
default: () => src_default, | ||
sendMessage: () => sendMessage | ||
}); | ||
module.exports = __toCommonJS(src_exports); | ||
var chat = () => { | ||
console.log("@contential/chat"); | ||
console.log("@contential/chat 1"); | ||
}; | ||
var sendMessage = () => { | ||
console.log("Send message 1"); | ||
}; | ||
var src_default = chat; | ||
// Annotate the CommonJS export names for ESM import in node: | ||
0 && (module.exports = { | ||
chat | ||
chat, | ||
sendMessage | ||
}); |
{ | ||
"name": "@contential/chat", | ||
"version": "0.0.0", | ||
"version": "0.0.1-test", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
export const chat = () => { | ||
console.log('@contential/chat'); | ||
console.log('@contential/chat 1'); | ||
}; | ||
export const sendMessage = () => { | ||
console.log('Send message 1'); | ||
}; | ||
export default chat; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
3875
66