11 行
341 B
TypeScript
11 行
341 B
TypeScript
|
|
import type { ISzyxPush } from "../packages/szyx-im/src/szyx-push-sdk";
|
||
|
|
|
||
|
|
import { ComponentCustomProperties } from "vue";
|
||
|
|
|
||
|
|
declare module "@vue/runtime-core" {
|
||
|
|
interface ComponentCustomProperties {
|
||
|
|
$SzyxPush: ISzyxPush; // 这里填类型
|
||
|
|
}
|
||
|
|
}
|
||
|
|
// 必须导出,才能在其他文件中使用
|
||
|
|
export default ComponentCustomProperties;
|