Skip to content

Commit

Permalink
feat: optimize type (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiner-tang committed Sep 21, 2023
1 parent f3bc14f commit e5f9ef1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/IDialogPropTypes.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import type { GetContainer } from 'rc-util/lib/PortalWrapper';
import type { CSSProperties, ReactNode, SyntheticEvent } from 'react';


export interface ModalClassNames {
header: string;
body: string;
footer: string;
mask: string;
wrapper: string;
header?: string;
body?: string;
footer?: string;
mask?: string;
wrapper?: string;
}

export type IDialogPropTypes = {
Expand Down

0 comments on commit e5f9ef1

Please sign in to comment.