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:
16
node_modules/yaml/dist/nodes/identity.d.ts
generated
vendored
16
node_modules/yaml/dist/nodes/identity.d.ts
generated
vendored
@@ -1,10 +1,10 @@
|
||||
import type { Document } from '../doc/Document.js';
|
||||
import type { Alias } from './Alias.js';
|
||||
import type { Node } from './Node.js';
|
||||
import type { Pair } from './Pair.js';
|
||||
import type { Scalar } from './Scalar.js';
|
||||
import type { YAMLMap } from './YAMLMap.js';
|
||||
import type { YAMLSeq } from './YAMLSeq.js';
|
||||
import type { Document } from '../doc/Document';
|
||||
import type { Alias } from './Alias';
|
||||
import type { Node } from './Node';
|
||||
import type { Pair } from './Pair';
|
||||
import type { Scalar } from './Scalar';
|
||||
import type { YAMLMap } from './YAMLMap';
|
||||
import type { YAMLSeq } from './YAMLSeq';
|
||||
export declare const ALIAS: unique symbol;
|
||||
export declare const DOC: unique symbol;
|
||||
export declare const MAP: unique symbol;
|
||||
@@ -13,7 +13,7 @@ export declare const SCALAR: unique symbol;
|
||||
export declare const SEQ: unique symbol;
|
||||
export declare const NODE_TYPE: unique symbol;
|
||||
export declare const isAlias: (node: any) => node is Alias;
|
||||
export declare const isDocument: <T extends Node = Node>(node: any) => node is Document<T, true>;
|
||||
export declare const isDocument: <T extends Node = Node>(node: any) => node is Document<T>;
|
||||
export declare const isMap: <K = unknown, V = unknown>(node: any) => node is YAMLMap<K, V>;
|
||||
export declare const isPair: <K = unknown, V = unknown>(node: any) => node is Pair<K, V>;
|
||||
export declare const isScalar: <T = unknown>(node: any) => node is Scalar<T>;
|
||||
|
||||
Reference in New Issue
Block a user