@ly-js/ui
Version:
`@ly-js/ui` 是基于`vue3`常用库,会在`@ly-js/element`、`@ly-js/vant`中引入
28 lines (27 loc) • 913 B
TypeScript
import type { ExtractPropTypes } from 'vue';
export interface CustomIconOptions {
scriptUrl?: string | string[];
}
export declare const loadIconScripts: (scriptUrl: string | string[]) => void;
declare const iconProps: {
type: {
type: StringConstructor;
require: boolean;
default: string;
};
};
export declare type IconProps = ExtractPropTypes<typeof iconProps>;
declare const _default: import("vue").DefineComponent<{
type: {
type: StringConstructor;
require: boolean;
default: string;
};
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
type?: unknown;
} & {
type: string;
} & {}>, {
type: string;
}>;
export default _default;