@joker.front/ui
Version:
Joker-UI | Official native UI component library for Joker Framework. Minimalist design with full-scene components, responsive layout & dynamic interactions. Access dev docs, API references & real-world case studies on official site.
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 {};