mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2025-12-09 22:30:41 -07:00
node_modules: upgrade
This commit is contained in:
26
node_modules/yaml/dist/options.d.ts
generated
vendored
26
node_modules/yaml/dist/options.d.ts
generated
vendored
@@ -1,13 +1,13 @@
|
||||
import type { Reviver } from './doc/applyReviver.js';
|
||||
import type { Directives } from './doc/directives.js';
|
||||
import type { LogLevelId } from './log.js';
|
||||
import type { ParsedNode } from './nodes/Node.js';
|
||||
import type { Pair } from './nodes/Pair.js';
|
||||
import type { Scalar } from './nodes/Scalar.js';
|
||||
import type { LineCounter } from './parse/line-counter.js';
|
||||
import type { Schema } from './schema/Schema.js';
|
||||
import type { Tags } from './schema/tags.js';
|
||||
import type { CollectionTag, ScalarTag } from './schema/types.js';
|
||||
import type { Reviver } from './doc/applyReviver';
|
||||
import type { Directives } from './doc/directives';
|
||||
import type { LogLevelId } from './log';
|
||||
import type { ParsedNode } from './nodes/Node';
|
||||
import type { Pair } from './nodes/Pair';
|
||||
import type { Scalar } from './nodes/Scalar';
|
||||
import type { LineCounter } from './parse/line-counter';
|
||||
import type { Schema } from './schema/Schema';
|
||||
import type { Tags } from './schema/tags';
|
||||
import type { CollectionTag, ScalarTag } from './schema/types';
|
||||
export type ParseOptions = {
|
||||
/**
|
||||
* Whether integers should be parsed into BigInt rather than number values.
|
||||
@@ -42,6 +42,12 @@ export type ParseOptions = {
|
||||
* Default: `true`
|
||||
*/
|
||||
strict?: boolean;
|
||||
/**
|
||||
* Parse all mapping keys as strings. Treat all non-scalar keys as errors.
|
||||
*
|
||||
* Default: `false`
|
||||
*/
|
||||
stringKeys?: boolean;
|
||||
/**
|
||||
* YAML requires map keys to be unique. By default, this is checked by
|
||||
* comparing scalar values with `===`; deep equality is not checked for
|
||||
|
||||
Reference in New Issue
Block a user