@zhsz/cool-design-dv
Version:
18 lines (17 loc) • 518 B
TypeScript
import type { InjectionKey, Ref } from 'vue';
import { Mitt } from '../utils/mitt';
export declare const dvPageSymbols: InjectionKey<{
widthScale: Ref<number>;
heightScale: Ref<number>;
screens: Ref<any[]>;
screenActiveIndex: Ref<number>;
settings: Ref<{
color: string;
fill: string;
textColor: string;
colors: string[];
[key: string]: any;
}>;
}>;
export declare const dvLayoutVm: InjectionKey<any>;
export declare const mittSymbol: InjectionKey<Mitt>;