@angular/cdk
Version:
Angular Material Component Development Kit
17 lines (16 loc) • 804 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 * as ts from 'typescript';
/** Name of the Angular Material module specifier. */
export declare const materialModuleSpecifier = "@angular/material";
/** Name of the Angular CDK module specifier. */
export declare const cdkModuleSpecifier = "@angular/cdk";
/** Whether the specified node is part of an Angular Material or CDK import declaration. */
export declare function isMaterialImportDeclaration(node: ts.Node): boolean;
/** Whether the specified node is part of an Angular Material or CDK import declaration. */
export declare function isMaterialExportDeclaration(node: ts.Node): boolean;