@angular/compiler-cli
Version:
Angular - the compiler CLI for Node.js
17 lines (16 loc) • 590 B
TypeScript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import ts from 'typescript';
export declare function error(msg: string): never;
export declare function createMessageDiagnostic(messageText: string): ts.Diagnostic;
/**
* Strip multiline comment start and end markers from the `commentText` string.
*
* This will also strip the JSDOC comment start marker (`/**`).
*/
export declare function stripComment(commentText: string): string;