Files
echo-nexus/node_modules/@codesandbox/sandpack-react/dist/components/common/LoadingOverlay.d.ts
T

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>>;