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

13 lines
303 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' {
export interface GlobalComponents {
2024-01-24 10:17:05 +00:00
BlankIcon: GlobalComponentConstructor<BlankIcon>;
}
}
export default BlankIcon;