primevue-mirror/components/lib/icon/eye/index.d.ts

13 lines
293 B
TypeScript

import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class EyeIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
EyeIcon: GlobalComponentConstructor<EyeIcon>;
}
}
export default EyeIcon;