19 lines
750 B
JavaScript
19 lines
750 B
JavaScript
|
define(["require", "exports", "./warn"], function (require, exports, warn_1) {
|
||
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.warnDeprecations = void 0;
|
||
|
/**
|
||
|
* Warns when a deprecated props are being used.
|
||
|
*
|
||
|
* @public
|
||
|
* @param componentName - The name of the component being used.
|
||
|
* @param props - The props passed into the component.
|
||
|
* @param deprecationMap - The map of deprecations, where key is the prop name and the value is
|
||
|
* either null or a replacement prop name.
|
||
|
*/
|
||
|
function warnDeprecations(componentName, props, deprecationMap) {
|
||
|
|
||
|
}
|
||
|
exports.warnDeprecations = warnDeprecations;
|
||
|
});
|
||
|
//# sourceMappingURL=warnDeprecations.js.map
|