mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-18 20:02:40 +08:00
14 lines
393 B
TypeScript
14 lines
393 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.io/license
|
|
*/
|
|
|
|
declare module '@babel/helper-annotate-as-pure' {
|
|
export default function annotateAsPure(
|
|
pathOrNode: import('@babel/types').Node | { node: import('@babel/types').Node },
|
|
): void;
|
|
}
|