Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / tsutils / util / control-flow.d.ts
1 import * as ts from 'typescript';
2 export declare function endsControlFlow(statement: ts.Statement | ts.BlockLike): boolean;
3 export declare type ControlFlowStatement = ts.BreakStatement | ts.ContinueStatement | ts.ReturnStatement | ts.ThrowStatement;
4 export interface ControlFlowEnd {
5     readonly statements: ReadonlyArray<ControlFlowStatement>;
6     readonly end: boolean;
7 }
8 export declare function getControlFlowEnd(statement: ts.Statement | ts.BlockLike): ControlFlowEnd;