Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename the withSnackbarProps interface to WithSnackbarProps #109

Merged
merged 1 commit into from
Apr 5, 2019
Merged
Changes from all commits
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
8 changes: 4 additions & 4 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ export type NotistackClassKey = 'variantSuccess' | 'variantError' | 'variantInfo

type CombinedClassKey = NotistackClassKey | SnackbarClassKey;

export interface withSnackbarProps {
export interface WithSnackbarProps {
enqueueSnackbar: (message: string | React.ReactNode, options?: OptionsObject) => string | number | null;
closeSnackbar: (key: string | number) => void
}

export function withSnackbar<P extends withSnackbarProps>(component: React.ComponentType<P>):
React.ComponentClass<Omit<P, keyof withSnackbarProps>> & { WrappedComponent: React.ComponentType<P> };
export function withSnackbar<P extends WithSnackbarProps>(component: React.ComponentType<P>):
React.ComponentClass<Omit<P, keyof WithSnackbarProps>> & { WrappedComponent: React.ComponentType<P> };


export function useSnackbar(): withSnackbarProps;
export function useSnackbar(): WithSnackbarProps;

// all material-ui props, including class keys for notistack and material-ui with additional notistack props
export interface SnackbarProviderProps extends Omit<SnackbarProps, 'open' | 'message' | 'classes'> {
Expand Down