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/parse/parser.d.ts
generated
vendored
8
node_modules/yaml/dist/parse/parser.d.ts
generated
vendored
@@ -1,4 +1,4 @@
|
||||
import { Token } from './cst.js';
|
||||
import type { Token } from './cst';
|
||||
/**
|
||||
* A YAML concrete syntax tree (CST) parser
|
||||
*
|
||||
@@ -57,14 +57,14 @@ export declare class Parser {
|
||||
*
|
||||
* @returns A generator of tokens representing each directive, document, and other structure.
|
||||
*/
|
||||
parse(source: string, incomplete?: boolean): Generator<Token, void, unknown>;
|
||||
parse(source: string, incomplete?: boolean): Generator<Token, void>;
|
||||
/**
|
||||
* Advance the parser by the `source` of one lexical token.
|
||||
*/
|
||||
next(source: string): Generator<Token, void, unknown>;
|
||||
next(source: string): Generator<Token, void>;
|
||||
private lexer;
|
||||
/** Call at end of input to push out any remaining constructions */
|
||||
end(): Generator<Token, void, unknown>;
|
||||
end(): Generator<Token, void>;
|
||||
private get sourceToken();
|
||||
private step;
|
||||
private peek;
|
||||
|
||||
Reference in New Issue
Block a user