blob: 202972397a019697ed76b017b4ccabb251110742 [file] [log] [blame]
/**
* @license
* Copyright Google Inc. 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
*/
/// <amd-module name="@angular/core/schematics/utils/typescript/nodes" />
import * as ts from 'typescript';
/** Checks whether the given TypeScript node has the specified modifier set. */
export declare function hasModifier(node: ts.Node, modifierKind: ts.SyntaxKind): boolean;