UNPKG

322 BPlain TextView Raw
1/*
2 * Copyright (c) 2015 NAVER Corp.
3 * egjs projects are licensed under the MIT license
4 */
5/* eslint-disable @typescript-eslint/no-unsafe-member-access */
6
7import Component from "./Component";
8import ComponentEvent from "./ComponentEvent";
9
10(Component as any).ComponentEvent = ComponentEvent;
11
12export default Component;