# prop-types-exact **Repository Path**: mirrors_airbnb/prop-types-exact ## Basic Information - **Project Name**: prop-types-exact - **Description**: For use with React PropTypes. Will error on any prop not explicitly specified. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # prop-types-exact [![Version Badge][npm-version-svg]][package-url] [![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] [![npm badge][npm-badge-png]][package-url] For use with React PropTypes. Will error on any prop not explicitly specified. ## Usage ```jsx import PropTypes from 'prop-types'; import exact from 'prop-types-exact'; function Foo({ foo, bar }) { return
{foo}{bar}
} Foo.propTypes = exact({ foo: PropTypes.string, bar: PropTypes.number, }); // no warnings // propTypes warning! ``` ## Tests Simply clone the repo, `npm install`, and run `npm test` [package-url]: https://npmjs.org/package/prop-types-exact [npm-version-svg]: http://versionbadg.es/ljharb/prop-types-exact.svg [deps-svg]: https://david-dm.org/ljharb/prop-types-exact.svg [deps-url]: https://david-dm.org/ljharb/prop-types-exact [dev-deps-svg]: https://david-dm.org/ljharb/prop-types-exact/dev-status.svg [dev-deps-url]: https://david-dm.org/ljharb/prop-types-exact#info=devDependencies [npm-badge-png]: https://nodei.co/npm/prop-types-exact.png?downloads=true&stars=true [license-image]: http://img.shields.io/npm/l/prop-types-exact.svg [license-url]: LICENSE [downloads-image]: http://img.shields.io/npm/dm/prop-types-exact.svg [downloads-url]: http://npm-stat.com/charts.html?package=prop-types-exact [codecov-image]: https://codecov.io/gh/ljharb/prop-types-exact/branch/main/graphs/badge.svg [codecov-url]: https://app.codecov.io/gh/ljharb/prop-types-exact/ [actions-image]: https://img.shields.io/github/check-runs/ljharb/prop-types-exact/main [actions-url]: https://github.com/ljharb/prop-types-exact/actions