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/nodes/Alias.d.ts
generated
vendored
19
node_modules/yaml/dist/nodes/Alias.d.ts
generated
vendored
@@ -1,11 +1,12 @@
|
||||
import type { Document } from '../doc/Document.js';
|
||||
import type { FlowScalar } from '../parse/cst.js';
|
||||
import type { StringifyContext } from '../stringify/stringify.js';
|
||||
import { NodeBase, Range } from './Node.js';
|
||||
import type { Document } from '../doc/Document';
|
||||
import type { FlowScalar } from '../parse/cst';
|
||||
import type { StringifyContext } from '../stringify/stringify';
|
||||
import type { Range } from './Node';
|
||||
import { NodeBase } from './Node';
|
||||
import type { Scalar } from './Scalar';
|
||||
import { ToJSContext } from './toJS.js';
|
||||
import type { YAMLMap } from './YAMLMap.js';
|
||||
import type { YAMLSeq } from './YAMLSeq.js';
|
||||
import type { ToJSContext } from './toJS';
|
||||
import type { YAMLMap } from './YAMLMap';
|
||||
import type { YAMLSeq } from './YAMLSeq';
|
||||
export declare namespace Alias {
|
||||
interface Parsed extends Alias {
|
||||
range: Range;
|
||||
@@ -22,7 +23,7 @@ export declare class Alias extends NodeBase {
|
||||
* Resolve the value of this alias within `doc`, finding the last
|
||||
* instance of the `source` anchor before this node.
|
||||
*/
|
||||
resolve(doc: Document): Scalar | YAMLMap | YAMLSeq | undefined;
|
||||
toJSON(_arg?: unknown, ctx?: ToJSContext): {} | null;
|
||||
resolve(doc: Document, ctx?: ToJSContext): Scalar | YAMLMap | YAMLSeq | undefined;
|
||||
toJSON(_arg?: unknown, ctx?: ToJSContext): unknown;
|
||||
toString(ctx?: StringifyContext, _onComment?: () => void, _onChompKeep?: () => void): string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user