DefinitelyTyped/types/miniprogram-wxs/miniprogram-wxs-tests.ts
2019-06-15 23:02:27 -07:00

18 lines
207 B
TypeScript

// $ExpectType Date
getDate();
// $ExpectType RegExp
getRegExp('.*');
// $ExpectError
new Date();
// $ExpectError
new RegExp('');
// $ExpectError
console.warn();
// $ExpectType number
Number.MAX_VALUE;