pope-test-callkit2
Version:
An Open-source Voice & Video Calling UI Component Based on Tencent Cloud Service.
28 lines (27 loc) • 773 B
TypeScript
export declare const Fit: readonly ["fill", "contain", "cover"];
export declare const MiniProgramImageFitMap: {
readonly fill: "scaleToFill";
readonly contain: "aspectFit";
readonly cover: "aspectFill";
};
export declare const ImageProps: {
readonly width: {
readonly type: StringConstructor;
readonly default: "320px";
};
readonly height: {
readonly type: StringConstructor;
readonly default: "240px";
};
readonly src: {
readonly type: StringConstructor;
};
readonly fit: {
readonly type: StringConstructor;
readonly values: readonly ["fill", "contain", "cover"];
readonly default: "fill";
};
};
export declare const imageEmits: {
error: (evt: any) => any;
};