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