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:
28
node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts
generated
vendored
28
node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts
generated
vendored
@@ -1,23 +1,17 @@
|
||||
import { ToJSContext } from '../../nodes/toJS.js';
|
||||
import { YAMLSeq } from '../../nodes/YAMLSeq.js';
|
||||
import { CreateNodeContext } from '../../util.js';
|
||||
import type { Schema } from '../Schema.js';
|
||||
import { CollectionTag } from '../types.js';
|
||||
import type { ToJSContext } from '../../nodes/toJS';
|
||||
import { YAMLMap } from '../../nodes/YAMLMap';
|
||||
import { YAMLSeq } from '../../nodes/YAMLSeq';
|
||||
import type { CreateNodeContext } from '../../util';
|
||||
import type { Schema } from '../Schema';
|
||||
import type { CollectionTag } from '../types';
|
||||
export declare class YAMLOMap extends YAMLSeq {
|
||||
static tag: string;
|
||||
constructor();
|
||||
add: (pair: import("../../index.js").Pair<any, any> | {
|
||||
key: any;
|
||||
value: any;
|
||||
}, overwrite?: boolean | undefined) => void;
|
||||
delete: (key: unknown) => boolean;
|
||||
get: {
|
||||
(key: unknown, keepScalar: true): import("../../index.js").Scalar<any> | undefined;
|
||||
(key: unknown, keepScalar?: false | undefined): any;
|
||||
(key: unknown, keepScalar?: boolean | undefined): any;
|
||||
};
|
||||
has: (key: unknown) => boolean;
|
||||
set: (key: any, value: any) => void;
|
||||
add: typeof YAMLMap.prototype.add;
|
||||
delete: typeof YAMLMap.prototype.delete;
|
||||
get: typeof YAMLMap.prototype.get;
|
||||
has: typeof YAMLMap.prototype.has;
|
||||
set: typeof YAMLMap.prototype.set;
|
||||
/**
|
||||
* If `ctx` is given, the return type is actually `Map<unknown, unknown>`,
|
||||
* but TypeScript won't allow widening the signature of a child method.
|
||||
|
||||
Reference in New Issue
Block a user