Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.

Update reactblockui.d.ts #48

Merged
merged 5 commits into from
Oct 28, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/reactblockui.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type BlockUiProps<T = {}> = React.HTMLAttributes<HTMLElement> & {
className?: string,
message?: string | React.ReactNode,
loader?: ((...args: any[]) => any) | string | React.ReactNode,
tag?: (...args: any[]) => any | string,
tag?: ((...args: any[]) => any) | string,
} & T;

declare class BlockUi<T = { [key: string]: any }> extends React.Component<BlockUiProps<T>> { }
Expand Down