Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
874 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | import * as ts from 'typescript';
|
---|
9 | export declare function collectDeepNodes<T extends ts.Node>(node: ts.Node, kind: ts.SyntaxKind): T[];
|
---|
10 | export declare function addPureComment<T extends ts.Node>(node: T): T;
|
---|
11 | export declare function hasPureComment(node: ts.Node): boolean;
|
---|
12 | export declare function isHelperName(name: string): boolean;
|
---|
13 | /**
|
---|
14 | * In FESM's when not using `importHelpers` there might be multiple in the same file.
|
---|
15 | @example
|
---|
16 | ```
|
---|
17 | var __decorate$1 = '';
|
---|
18 | var __decorate$2 = '';
|
---|
19 | ```
|
---|
20 | * @returns Helper name without the '$' and number suffix or `undefined` if it's not a helper.
|
---|
21 | */
|
---|
22 | export declare function getCleanHelperName(name: string): string | undefined;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.