UNPKG

379 BTypeScriptView Raw
1import NodePatcher from './NodePatcher';
2import { PatcherContext } from './types';
3export default class PassthroughPatcher extends NodePatcher {
4 children: Array<NodePatcher | Array<NodePatcher> | null>;
5 constructor(patcherContext: PatcherContext, ...children: Array<NodePatcher | Array<NodePatcher> | null>);
6 patchAsExpression(): void;
7 isRepeatable(): boolean;
8}