5 lines
183 B
TypeScript
5 lines
183 B
TypeScript
import type ESTree from 'estree';
|
|
import BaseJSNode from './BaseJSNode.js';
|
|
export default class ContinueStatement extends BaseJSNode<ESTree.ContinueStatement> {
|
|
run(): string;
|
|
}
|