12 lines
385 B
TypeScript
12 lines
385 B
TypeScript
import * as React from "react";
|
|
export interface LoadingOverlayProps {
|
|
clientId?: string;
|
|
/**
|
|
* It enforces keeping the loading state visible,
|
|
* which is helpful for external loading states.
|
|
*/
|
|
loading?: boolean;
|
|
showOpenInCodeSandbox: boolean;
|
|
}
|
|
export declare const LoadingOverlay: React.FC<LoadingOverlayProps & React.HTMLAttributes<HTMLDivElement>>;
|