13 lines
308 B
TypeScript
13 lines
308 B
TypeScript
import type { DefineComponent } from '@primevue/core';
|
|
import type { Icon } from '@primevue/icons/baseicon';
|
|
|
|
declare class CalendarIcon extends Icon {}
|
|
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
CalendarIcon: DefineComponent<CalendarIcon>;
|
|
}
|
|
}
|
|
|
|
export default CalendarIcon;
|