Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
feat(snackbar): Add exported SnackbarMessage interface
Browse files Browse the repository at this point in the history
  • Loading branch information
trimox committed Jul 8, 2017
1 parent 58c0517 commit b654bb3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/lib/snackbar/snackbar-message.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export interface SnackbarMessage {
message: string;
timeout?: number;
actionHandler?: Function;
actionText?: string;
multiline?: boolean;
actionOnBottom?: boolean;
}

0 comments on commit b654bb3

Please sign in to comment.