Skip to content

Commit 9343f06

Browse files
Merge pull request DefinitelyTyped#21481 from bonimba/react-redux-toastr-fix-position-typo
[React-redux-toastr] fix typo 'bottom-ceter' to 'bottom-center' in type positionType
2 parents 70688d6 + 58cf30d commit 9343f06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/react-redux-toastr/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Component } from 'react';
1010
import { Action, ActionCreator, Reducer } from 'redux';
1111

1212
export type iconType = 'success' | 'info' | 'warning' | 'error';
13-
export type positionType = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-ceter' | 'bottom-right';
13+
export type positionType = 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
1414
export type toastType = 'success' | 'info' | 'warning' | 'light' | 'error' | 'confirm' | 'message';
1515
export type transitionInType = 'bounceIn' | 'bounceInDown' | 'fadeIn';
1616
export type transitionOutType = 'bounceOut' | 'bounceOutUp' | 'fadeOut';

0 commit comments

Comments
 (0)