elearning/Frontend-Learner/node_modules/comment-parser/lib/transforms/index.d.ts

4 lines
160 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import { Block } from '../primitives.js';
export type Transform = (Block: Block) => Block;
export declare function flow(...transforms: Transform[]): Transform;