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:
19
node_modules/yaml/dist/options.d.ts
generated
vendored
19
node_modules/yaml/dist/options.d.ts
generated
vendored
@@ -8,7 +8,7 @@ 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';
|
||||
export declare type ParseOptions = {
|
||||
export type ParseOptions = {
|
||||
/**
|
||||
* Whether integers should be parsed into BigInt rather than number values.
|
||||
*
|
||||
@@ -56,7 +56,7 @@ export declare type ParseOptions = {
|
||||
*/
|
||||
uniqueKeys?: boolean | ((a: ParsedNode, b: ParsedNode) => boolean);
|
||||
};
|
||||
export declare type DocumentOptions = {
|
||||
export type DocumentOptions = {
|
||||
/**
|
||||
* @internal
|
||||
* Used internally by Composer. If set and includes an explicit version,
|
||||
@@ -76,7 +76,7 @@ export declare type DocumentOptions = {
|
||||
*/
|
||||
version?: '1.1' | '1.2' | 'next';
|
||||
};
|
||||
export declare type SchemaOptions = {
|
||||
export type SchemaOptions = {
|
||||
/**
|
||||
* When parsing, warn about compatibility issues with the given schema.
|
||||
* When stringifying, use scalar styles that are parsed correctly
|
||||
@@ -133,7 +133,7 @@ export declare type SchemaOptions = {
|
||||
*/
|
||||
toStringDefaults?: ToStringOptions;
|
||||
};
|
||||
export declare type CreateNodeOptions = {
|
||||
export type CreateNodeOptions = {
|
||||
/**
|
||||
* During node construction, use anchors and aliases to keep strictly equal
|
||||
* non-null objects as equivalent in YAML.
|
||||
@@ -163,7 +163,7 @@ export declare type CreateNodeOptions = {
|
||||
*/
|
||||
tag?: string;
|
||||
};
|
||||
export declare type ToJSOptions = {
|
||||
export type ToJSOptions = {
|
||||
/**
|
||||
* Use Map rather than Object to represent mappings.
|
||||
*
|
||||
@@ -189,7 +189,7 @@ export declare type ToJSOptions = {
|
||||
*/
|
||||
reviver?: Reviver;
|
||||
};
|
||||
export declare type ToStringOptions = {
|
||||
export type ToStringOptions = {
|
||||
/**
|
||||
* Use block quote styles for scalar values where applicable.
|
||||
* Set to `false` to disable block quotes completely.
|
||||
@@ -264,6 +264,13 @@ export declare type ToStringOptions = {
|
||||
* Default: `'false'`
|
||||
*/
|
||||
falseStr?: string;
|
||||
/**
|
||||
* When true, a single space of padding will be added inside the delimiters
|
||||
* of non-empty single-line flow collections.
|
||||
*
|
||||
* Default: `true`
|
||||
*/
|
||||
flowCollectionPadding?: boolean;
|
||||
/**
|
||||
* The number of spaces to use when indenting code.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user