feat(overlays): expose animation customization

This commit is contained in:
Manu Mtz.-Almeida
2018-10-04 17:21:15 +02:00
parent f63c0f5ccc
commit dc976cc745
7 changed files with 25 additions and 8 deletions

View File

@ -1,4 +1,4 @@
import { TextFieldTypes } from '../../interface';
import { AnimationBuilder, TextFieldTypes } from '../../interface';
export interface AlertOptions {
header?: string;
@ -14,6 +14,9 @@ export interface AlertOptions {
mode?: string;
keyboardClose?: boolean;
id?: string;
enterAnimation?: AnimationBuilder;
leaveAnimation?: AnimationBuilder;
}
export interface AlertInput {