@skyux/modals
Version:
This library was generated with [Nx](https://nx.dev).
16 lines (15 loc) • 412 B
TypeScript
/**
* Contains an object with the data passed from users when
* a modal is closed and the reason that the modal was closed.
*/
export declare class SkyModalCloseArgs {
/**
* The reason the modal was closed.
* Options include `"close"`, `"save"`, and `"cancel"`.
*/
reason: string | undefined;
/**
* The data passed from users when the modal is closed.
*/
data: any;
}