notify.d.ts 296B

12345678910111213
  1. interface NotifyOptions {
  2. text: string;
  3. color?: string;
  4. backgroundColor?: string;
  5. duration?: number;
  6. selector?: string;
  7. context?: any;
  8. safeAreaInsetTop?: boolean;
  9. zIndex?: number;
  10. }
  11. export default function Notify(options: NotifyOptions | string): void;
  12. export {};