消消方块阵换皮表情
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
778 B

1 week ago
import packageJSON from '../package.json';
import { excelToJsonPlugin } from './excel2jsonAndTs';
/**
* @en Registration method for the main process of Extension
* @zh
*/
export const methods: { [key: string]: (...any: any) => any } = {
/**
* @en A method that can be triggered by message
* @zh message
*/
async export() {
excelToJsonPlugin.exportAllExcel();
},
};
/**
* @en Method Triggered on Extension Startup
* @zh
*/
export function load() {
excelToJsonPlugin.load();
}
/**
* @en Method triggered when uninstalling the extension
* @zh
*/
export function unload() {
excelToJsonPlugin.unload();
}