13 lines
493 B
TypeScript
13 lines
493 B
TypeScript
import Vue, { VueConstructor } from 'vue';
|
|
import * as IconMap from './map';
|
|
import { IIconInstance, IIconProps } from './runtime';
|
|
export declare type IconType = keyof typeof IconMap;
|
|
export interface IIconParkInstance extends IIconInstance {
|
|
type: IconType | string;
|
|
}
|
|
export interface IIconAllProps extends Vue, IIconProps {
|
|
type: IconType;
|
|
}
|
|
export declare const IconPark: VueConstructor<IIconAllProps>;
|
|
export declare function install(Vue: VueConstructor, prefix?: string): void;
|