MCPcopy
hub / github.com/getredash/redash / DialogProps

Interface DialogProps

client/app/components/DialogWrapper.d.ts:3–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { ModalProps } from "antd/lib/modal/Modal";
2
3export interface DialogProps<ROk, RCancel> {
4 props: ModalProps;
5 close: (result: ROk) => void;
6 dismiss: (result: RCancel) => void;
7}
8
9export type DialogWrapperChildProps<ROk, RCancel> = {
10 dialog: DialogProps<ROk, RCancel>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected