dts-critic
Version:
Checks a new .d.ts against the Javascript source and tells you what problems it has
13 lines (12 loc) • 316 B
JavaScript
var $export = {};
// type bitmap
$export.F = 1; // forced
$export.G = 2; // global
$export.S = 4; // static
$export.P = 8; // proto
$export.B = 16; // bind
$export.W = 32; // wrap
$export.U = 64; // safe
$export.R = 128; // real proto method for `library`
$export.normal = "hi";
module.exports = $export;