notify.d.ts 281 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 declare type NotifyOptions = { text: string; color?: string; backgroundColor?: string; duration?: number; selector?: string; context?: any; safeAreaInsetTop?: boolean; }; export default function Notify(options: NotifyOptions | string): void; export {};