mirror of
https://github.com/zoriya/v10.git
synced 2026-08-10 16:09:18 +00:00
12 lines
413 B
TypeScript
12 lines
413 B
TypeScript
import { ReactNode } from "react";
|
|
//#region src/ui/error-dialog/error-dialog-root.d.ts
|
|
interface ErrorDialogRootProps {
|
|
children?: ReactNode;
|
|
}
|
|
declare function ErrorDialogRoot({ children }: ErrorDialogRootProps): ReactNode;
|
|
declare namespace ErrorDialogRoot {
|
|
type Props = ErrorDialogRootProps;
|
|
}
|
|
//#endregion
|
|
export { ErrorDialogRoot, ErrorDialogRootProps };
|
|
//# sourceMappingURL=error-dialog-root.d.ts.map
|