export type ISzyxPush = { /** * 初始化方法 */ init():void } class SzyxPushSdk implements ISzyxPush{ init() { console.log('---------------------->>>'); } } export default SzyxPushSdk