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