blob: db3f4f58655ec55be933bc1948da6d3c57fdd51c [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/migrations/static-queries/angular/super_class" />
import * as ts from 'typescript';
import { ClassMetadataMap } from './ng_query_visitor';
/**
* Gets all chained super-class TypeScript declarations for the given class
* by using the specified class metadata map.
*/
export declare function getSuperClassDeclarations(classDecl: ts.ClassDeclaration, classMetadataMap: ClassMetadataMap): ts.ClassDeclaration[];