beyonk-group / svelte-notifications

Svelte toast notifications component that can be used in any JS application
309 stars 24 forks source link

[TypeScript] Change ITheme interface to accept other values. #37

Open dbyzero opened 1 year ago

dbyzero commented 1 year ago

Without it I cannot change default color values in typescript without error.

Error :

Type '{ danger: string; success: string; warning: string; info: string; default: string; }' is not assignable to type 'ITheme'.
  Types of property 'danger' are incompatible.
    Type 'string' is not assignable to type '"#bb2124"'