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:
11
node_modules/yaml/dist/parse/cst.d.ts
generated
vendored
11
node_modules/yaml/dist/parse/cst.d.ts
generated
vendored
@@ -1,6 +1,7 @@
|
||||
export { createScalarToken, resolveAsScalar, setScalarValue } from './cst-scalar.js';
|
||||
export { stringify } from './cst-stringify.js';
|
||||
export { visit, Visitor, VisitPath } from './cst-visit.js';
|
||||
export { createScalarToken, resolveAsScalar, setScalarValue } from './cst-scalar';
|
||||
export { stringify } from './cst-stringify';
|
||||
export type { Visitor, VisitPath } from './cst-visit';
|
||||
export { visit } from './cst-visit';
|
||||
export interface SourceToken {
|
||||
type: 'byte-order-mark' | 'doc-mode' | 'doc-start' | 'space' | 'comment' | 'newline' | 'directive-line' | 'anchor' | 'tag' | 'seq-item-ind' | 'explicit-key-ind' | 'map-value-ind' | 'flow-map-start' | 'flow-map-end' | 'flow-seq-start' | 'flow-seq-end' | 'flow-error-end' | 'comma' | 'block-scalar-header';
|
||||
offset: number;
|
||||
@@ -51,11 +52,13 @@ export interface BlockMap {
|
||||
indent: number;
|
||||
items: Array<{
|
||||
start: SourceToken[];
|
||||
explicitKey?: true;
|
||||
key?: never;
|
||||
sep?: never;
|
||||
value?: never;
|
||||
} | {
|
||||
start: SourceToken[];
|
||||
explicitKey?: true;
|
||||
key: Token | null;
|
||||
sep: SourceToken[];
|
||||
value?: Token;
|
||||
@@ -99,7 +102,7 @@ export declare const SCALAR = "\u001F";
|
||||
/** @returns `true` if `token` is a flow or block collection */
|
||||
export declare const isCollection: (token: Token | null | undefined) => token is BlockMap | BlockSequence | FlowCollection;
|
||||
/** @returns `true` if `token` is a flow or block scalar; not an alias */
|
||||
export declare const isScalar: (token: Token | null | undefined) => token is BlockScalar | FlowScalar;
|
||||
export declare const isScalar: (token: Token | null | undefined) => token is FlowScalar | BlockScalar;
|
||||
/** Get a printable representation of a lexer token */
|
||||
export declare function prettyToken(token: string): string;
|
||||
/** Identify the type of a lexer token. May return `null` for unknown tokens. */
|
||||
|
||||
Reference in New Issue
Block a user