13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
|
import { GlobalComponentConstructor } from '../../ts-helpers';
|
||
|
import { Icon } from '../index';
|
||
|
|
||
|
declare class WindowMinimizeIcon extends Icon {}
|
||
|
|
||
|
declare module '@vue/runtime-core' {
|
||
|
interface GlobalComponents {
|
||
|
WindowMinimizeIcon: GlobalComponentConstructor<WindowMinimizeIcon>;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default WindowMinimizeIcon;
|