Update Toast.d.ts

Toast: Add missing 'top-right' ToastPositionType
pull/2177/head
Denis Forveille 2022-02-15 11:01:40 -05:00 committed by Tuğçe Küçükoğlu
parent 6f5611671e
commit 071afce1f3
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import { VNode } from 'vue';
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
type ToastPositionType = 'top-left' | 'top-center' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'center' | undefined;
type ToastPositionType = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'center' | undefined;
type ToastMessageSeverityType = 'success' | 'info' | 'warn' | 'error' | undefined;