cc038a7372
NPM Installation / build (16.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (16.x, windows-latest) (push) Has been cancelled
NPM Installation / build (17.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (17.x, windows-latest) (push) Has been cancelled
NPM Installation / build (18.x, ubuntu-latest) (push) Has been cancelled
NPM Installation / build (18.x, windows-latest) (push) Has been cancelled
12 lines
582 B
TypeScript
12 lines
582 B
TypeScript
import type { ParsedNode } from '../nodes/Node';
|
|
import type { BlockMap, BlockSequence, FlowCollection, SourceToken } from '../parse/cst';
|
|
import type { ComposeContext, ComposeNode } from './compose-node';
|
|
import type { ComposeErrorHandler } from './composer';
|
|
interface Props {
|
|
anchor: SourceToken | null;
|
|
tag: SourceToken | null;
|
|
newlineAfterProp: SourceToken | null;
|
|
}
|
|
export declare function composeCollection(CN: ComposeNode, ctx: ComposeContext, token: BlockMap | BlockSequence | FlowCollection, props: Props, onError: ComposeErrorHandler): ParsedNode;
|
|
export {};
|