notify.d.ts 173 B

1234567
  1. declare type NotifyOptions = {
  2. selector?: string;
  3. duration?: number;
  4. context?: any;
  5. };
  6. export default function Notify(options?: NotifyOptions): void;
  7. export {};