@joker.front/ui
Version:
Joker UI组件库是一个精心设计和编码的项目,旨在为开发者提供一系列高效、易用且美观的用户界面组件
20 lines (19 loc) • 526 B
TypeScript
import { Component, VNode } from "@joker.front/core";
export type Option = {
text?: string;
fullscreen?: boolean;
spinner?: string;
zIndex?: string;
target?: Element | VNode.Node | string | null;
customClass?: string;
};
export declare let fullScreenLoading: any;
type ComponentExtend = Component & {
originalPosition?: any;
originalOverflow?: any;
};
export declare function Loading(option?: Option): ComponentExtend & {
close: Function;
setText: (text: string) => void;
};
export {};