The current type of the type argument is string, which may cause errors if we typed a wrong value.
But if we specify the type to 'default' | 'info' | 'success' | 'warning' | 'error', we can have not only stricter type checks but also auto-completion support from the editor.
The current type of the
type
argument isstring
, which may cause errors if we typed a wrong value.But if we specify the type to
'default' | 'info' | 'success' | 'warning' | 'error'
, we can have not only stricter type checks but also auto-completion support from the editor.