You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type TypographyPathifyT = {
[key in keyof TypographyVariantsT]: string,
};
Will first produce 'key' is defined but never used.eslint[no-unused-vars](https://eslint.org/docs/latest/rules/no-unused-vars) and then using mapped types more will produce, 'key' is already defined.eslint[no-redeclare](https://eslint.org/docs/latest/rules/no-redeclare)
The text was updated successfully, but these errors were encountered:
Will first produce
'key' is defined but never used.eslint[no-unused-vars](https://eslint.org/docs/latest/rules/no-unused-vars)
and then using mapped types more will produce,'key' is already defined.eslint[no-redeclare](https://eslint.org/docs/latest/rules/no-redeclare)
The text was updated successfully, but these errors were encountered: