accept baseline

This commit is contained in:
Klaus Meinhardt 2018-07-11 18:46:22 +02:00
parent 0de903ea17
commit 626480df20

View File

@ -6094,9 +6094,9 @@ declare namespace ts {
function nodeIsMissing(node: Node | undefined): boolean;
function nodeIsPresent(node: Node | undefined): boolean;
/**
* Prepends statements to an array taking care of prologue directives.
* Prepends statements to an array while taking care of prologue directives.
*/
function prependStatements<T extends Statement>(to: T[], from: ReadonlyArray<T> | undefined): T[];
function addStatementsAfterPrologue<T extends Statement>(to: T[], from: ReadonlyArray<T> | undefined): T[];
/**
* Determine if the given comment is a triple-slash
*