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