diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-07-14 08:34:36 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-07-14 08:34:36 -0400 |
commit | 3ac0389ec33e6df7ef5c097ea30ed01ae2c782a7 (patch) | |
tree | 8f7fc4deeb78a6603fc8ed1a324c2a85603e65e7 /src/lib/common/typings/BushInspectOptions.ts | |
parent | afc334cb02a72627b9fb15a53efa3cfd4010463e (diff) | |
download | tanzanite-3ac0389ec33e6df7ef5c097ea30ed01ae2c782a7.tar.gz tanzanite-3ac0389ec33e6df7ef5c097ea30ed01ae2c782a7.tar.bz2 tanzanite-3ac0389ec33e6df7ef5c097ea30ed01ae2c782a7.zip |
inspect options: add missing numericSeparator option
Diffstat (limited to 'src/lib/common/typings/BushInspectOptions.ts')
-rw-r--r-- | src/lib/common/typings/BushInspectOptions.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/common/typings/BushInspectOptions.ts b/src/lib/common/typings/BushInspectOptions.ts index 608000c..b8a16e1 100644 --- a/src/lib/common/typings/BushInspectOptions.ts +++ b/src/lib/common/typings/BushInspectOptions.ts @@ -108,6 +108,13 @@ export interface BushInspectOptions extends InspectOptions { getters?: 'get' | 'set' | boolean | undefined; /** + * If set to `true`, an underscore is used to separate every three digits in all bigints and numbers. + * + * @default false + */ + numericSeparator: boolean; + + /** * Whether or not to inspect strings. * * @default false |