antd
Version:
An enterprise-class UI design language and React components implementation
5 lines (4 loc) • 302 B
TypeScript
import type { StackConfig } from '@rc-component/notification/es/hooks/useStack';
export type StackConfigInput = boolean | StackConfig | undefined;
declare const useStackConfig: (stackConfig: StackConfigInput, defaultStackConfig: StackConfigInput) => false | StackConfig;
export default useStackConfig;