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