mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
45 lines
1.0 KiB
TypeScript
45 lines
1.0 KiB
TypeScript
/** @deprecated not exists anymore - this type exists as a fallback for existing usages */
|
|
export type ThemeInput = any;
|
|
|
|
/** Notistack */
|
|
/**
|
|
* Part of the following typing and documentation is from material-ui/src/Snackbar/Snackbar.d.ts
|
|
*/
|
|
export {
|
|
SnackbarProvider,
|
|
withSnackbar,
|
|
SnackbarContent as NotistackSnackbarContent,
|
|
useSnackbar,
|
|
} from "notistack";
|
|
|
|
export type {
|
|
WithSnackbarProps,
|
|
SnackbarKey,
|
|
ProviderContext,
|
|
VariantType,
|
|
CloseReason,
|
|
SnackbarMessage,
|
|
SnackbarAction,
|
|
SnackbarContentCallback,
|
|
TransitionCloseHandler,
|
|
TransitionEnterHandler,
|
|
TransitionHandler,
|
|
ContainerClassKey as NotistackContainerClassKey,
|
|
VariantClassKey,
|
|
CombinedClassKey,
|
|
SnackbarOrigin,
|
|
IconVariant,
|
|
TransitionHandlerProps,
|
|
SnackbarContentProps,
|
|
SnackbarProps,
|
|
SharedProps,
|
|
OptionsObject,
|
|
SnackbarProviderProps,
|
|
} from "notistack";
|
|
|
|
export * from "./components";
|
|
export * from "./hooks";
|
|
export * from "./theme";
|
|
export * from "./providers";
|
|
export * from "./contexts";
|