sci-pro
Version:
23 lines (22 loc) • 809 B
TypeScript
import * as components from './index';
declare module '@vue/runtime-core' {
export interface GlobalComponents {
SciDemo: typeof components.Demo;
SciIcon: typeof components.Icon;
SciSwitch: typeof components.Switch;
SciStateBall: typeof components.StateBall;
SciTree: typeof components.Tree;
SciTabs: typeof components.Tabs;
SciTabsPanel: typeof components.TabsPanel;
SciRadio: typeof components.Radio;
SciTable: typeof components.SciTable;
SciMessage: typeof components.Message;
SciBtn: typeof components.Btn;
SciTooltip: typeof components.Tooltip;
SciSelect: typeof components.Select;
SciInput: typeof components.Input;
SciTransfer: typeof components.Transfer;
SciCheckbox: typeof components.Checkbox;
}
}
export { };