Files
video-gen/video-gen-admin/node_modules/@rc-component/notification/lib/hooks/useStack.d.ts
T
2026-05-25 17:08:18 +08:00

6 lines
224 B
TypeScript

import type { StackConfig } from '../interface';
type StackParams = Exclude<StackConfig, boolean>;
type UseStack = (config?: StackConfig) => [boolean, StackParams];
declare const useStack: UseStack;
export default useStack;