Files
2026-07-13 12:30:52 +08:00

14 lines
231 B
TypeScript

const log = () => console.log('hello!');
const plugin: any = {
pluginName: 'custom',
install (cnchar: any) {
console.log(cnchar);
},
customLog: log,
version: '0.0.1',
log
};
export default plugin;