putout plugin adds ability to find and remove duplicate keys from interface
npm install @putout/plugin-remove-duplicate-interface-keys[NPMIMGURL]: https://img.shields.io/npm/v/@putout/plugin-remove-duplicate-interface-keys.svg?style=flat&longCache=true
[NPMURL]: https://npmjs.org/package/@putout/plugin-remove-duplicate-interface-keys "npm"
šPutout plugin adds ability to find and remove duplecate interface-keys.
Moved to @putout/plugin-typescript
```
npm i @putout/plugin-remove-duplicate-interface-keys
`json`
{
"rules": {
"remove-duplicate-interface-keys": "on"
}
}
`ts`
interface Hello {
'hello': any
'hello': string
}
`ts``
interface Hello {
'hello': string
}
MIT