UNPKG

lizi-wxapp-cli

Version:

微信小程序快速创建cli脚手架

22 lines (14 loc) 267 B
interface ComponentInterface extends BaseComponent { data: DataInterface, methods: MethodsInterface } interface DataInterface { } interface MethodsInterface { } const Options: ComponentInterface = { data: {}, methods: {} } Component(Options) export {}