UNPKG
yaml-types
Version:
latest (0.4.0)
0.4.0
0.3.0
0.2.0
0.1.0
Useful JavaScript types for YAML
eemeli.org/yaml/
eemeli/yaml-types
yaml-types
/
dist
/
bigint.d.ts
9 lines
(8 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
ScalarTag
}
from
'yaml'
;
/** * `!bigint` BigInt * * [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) values, * using their conventional `123n` representation. */
export
declare
const
bigint
:
ScalarTag
;