all.d.ts 493 B

123456789101112
  1. import Vue, { VueConstructor } from 'vue';
  2. import * as IconMap from './map';
  3. import { IIconInstance, IIconProps } from './runtime';
  4. export declare type IconType = keyof typeof IconMap;
  5. export interface IIconParkInstance extends IIconInstance {
  6. type: IconType | string;
  7. }
  8. export interface IIconAllProps extends Vue, IIconProps {
  9. type: IconType;
  10. }
  11. export declare const IconPark: VueConstructor<IIconAllProps>;
  12. export declare function install(Vue: VueConstructor, prefix?: string): void;