dynamicsmobile
Version:
Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com
16 lines (15 loc) • 346 B
TypeScript
export type ToastOptions = {
toastOrSnack?: 'toast' | 'snack';
type?: 'info' | 'success' | 'warning' | 'error';
title?: string;
subtitle?: string;
content: string;
delay?: number;
onClick?: () => void;
dismissible?: boolean;
img?: {
src: string;
class?: string;
alt?: string;
};
};