primevue-mirror/components/lib/icons/blank/index.d.ts

13 lines
310 B
TypeScript
Raw Normal View History

2024-01-24 10:17:05 +00:00
import { Icon } from '../../icons/index';
import { GlobalComponentConstructor } from '../../ts-helpers';
declare class BlankIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
BlankIcon: GlobalComponentConstructor<BlankIcon>;
}
}
export default BlankIcon;