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:
8
node_modules/yaml/dist/visit.d.ts
generated
vendored
8
node_modules/yaml/dist/visit.d.ts
generated
vendored
@@ -5,8 +5,8 @@ import type { Pair } from './nodes/Pair.js';
|
||||
import type { Scalar } from './nodes/Scalar.js';
|
||||
import type { YAMLMap } from './nodes/YAMLMap.js';
|
||||
import type { YAMLSeq } from './nodes/YAMLSeq.js';
|
||||
export declare type visitorFn<T> = (key: number | 'key' | 'value' | null, node: T, path: readonly (Document | Node | Pair)[]) => void | symbol | number | Node | Pair;
|
||||
export declare type visitor = visitorFn<unknown> | {
|
||||
export type visitorFn<T> = (key: number | 'key' | 'value' | null, node: T, path: readonly (Document | Node | Pair)[]) => void | symbol | number | Node | Pair;
|
||||
export type visitor = visitorFn<unknown> | {
|
||||
Alias?: visitorFn<Alias>;
|
||||
Collection?: visitorFn<YAMLMap | YAMLSeq>;
|
||||
Map?: visitorFn<YAMLMap>;
|
||||
@@ -16,8 +16,8 @@ export declare type visitor = visitorFn<unknown> | {
|
||||
Seq?: visitorFn<YAMLSeq>;
|
||||
Value?: visitorFn<Scalar | YAMLMap | YAMLSeq>;
|
||||
};
|
||||
export declare type asyncVisitorFn<T> = (key: number | 'key' | 'value' | null, node: T, path: readonly (Document | Node | Pair)[]) => void | symbol | number | Node | Pair | Promise<void | symbol | number | Node | Pair>;
|
||||
export declare type asyncVisitor = asyncVisitorFn<unknown> | {
|
||||
export type asyncVisitorFn<T> = (key: number | 'key' | 'value' | null, node: T, path: readonly (Document | Node | Pair)[]) => void | symbol | number | Node | Pair | Promise<void | symbol | number | Node | Pair>;
|
||||
export type asyncVisitor = asyncVisitorFn<unknown> | {
|
||||
Alias?: asyncVisitorFn<Alias>;
|
||||
Collection?: asyncVisitorFn<YAMLMap | YAMLSeq>;
|
||||
Map?: asyncVisitorFn<YAMLMap>;
|
||||
|
||||
Reference in New Issue
Block a user