-
Notifications
You must be signed in to change notification settings - Fork 11
/
disabled.js
46 lines (43 loc) · 1.15 KB
/
disabled.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
(function (global, factory) {
if (typeof define === "function" && define.amd) {
define("PropTypes", ["exports"], factory);
} else if (typeof exports !== "undefined") {
factory(exports);
} else {
var mod = {
exports: {}
};
factory(mod.exports);
global.PropTypes = mod.exports;
}
})(this, function (exports) {
"use strict";
exports.__esModule = true;
function proptype() {}
proptype.isRequired = proptype;
var getProptype = function getProptype() {
return proptype;
};
exports.default = {
checkPropTypes: function checkPropTypes() {
return null;
},
array: proptype,
bool: proptype,
func: proptype,
number: proptype,
object: proptype,
string: proptype,
symbol: proptype,
any: getProptype,
arrayOf: getProptype,
element: getProptype,
instanceOf: getProptype,
node: getProptype,
objectOf: getProptype,
oneOf: getProptype,
oneOfType: getProptype,
shape: getProptype
};
});
//# sourceMappingURL=disabled.js.map