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:
20
node_modules/yaml/dist/nodes/YAMLMap.d.ts
generated
vendored
20
node_modules/yaml/dist/nodes/YAMLMap.d.ts
generated
vendored
@@ -1,12 +1,12 @@
|
||||
import type { BlockMap, FlowCollection } from '../parse/cst.js';
|
||||
import type { Schema } from '../schema/Schema.js';
|
||||
import type { StringifyContext } from '../stringify/stringify.js';
|
||||
import { CreateNodeContext } from '../util.js';
|
||||
import { Collection } from './Collection.js';
|
||||
import type { ParsedNode, Range } from './Node.js';
|
||||
import { Pair } from './Pair.js';
|
||||
import { Scalar } from './Scalar.js';
|
||||
import type { ToJSContext } from './toJS.js';
|
||||
import type { BlockMap, FlowCollection } from '../parse/cst';
|
||||
import type { Schema } from '../schema/Schema';
|
||||
import type { StringifyContext } from '../stringify/stringify';
|
||||
import type { CreateNodeContext } from '../util';
|
||||
import { Collection } from './Collection';
|
||||
import type { ParsedNode, Range } from './Node';
|
||||
import { Pair } from './Pair';
|
||||
import type { Scalar } from './Scalar';
|
||||
import type { ToJSContext } from './toJS';
|
||||
export type MapLike = Map<unknown, unknown> | Set<unknown> | Record<string | number | symbol, unknown>;
|
||||
export declare function findPair<K = unknown, V = unknown>(items: Iterable<Pair<K, V>>, key: unknown): Pair<K, V> | undefined;
|
||||
export declare namespace YAMLMap {
|
||||
@@ -24,7 +24,7 @@ export declare class YAMLMap<K = unknown, V = unknown> extends Collection {
|
||||
* A generic collection parsing method that can be extended
|
||||
* to other node classes that inherit from YAMLMap
|
||||
*/
|
||||
static from(schema: Schema, obj: unknown, ctx: CreateNodeContext): YAMLMap<unknown, unknown>;
|
||||
static from(schema: Schema, obj: unknown, ctx: CreateNodeContext): YAMLMap;
|
||||
/**
|
||||
* Adds a value to the collection.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user