Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. export interface IAlertService {
  2. success(title: string, textMessage: string, textbutton: string);
  3. error(title: string, textMessage: string, textbutton: string);
  4. warning(title: string, textMessage: string, textbutton: string);
  5. info(title: string, textMessage: string, textbutton: string);
  6. question(title: string, textMessage: string, textbutton: string);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement