/** * @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 */ import { Path } from '../path'; import { ResolverHost } from './resolver'; export type ReplacementFunction = (path: Path) => Path; /** */ export declare class PatternMatchingHost extends ResolverHost { protected _patterns: Map; addPattern(pattern: string | string[], replacementFn: ReplacementFunction): void; protected _resolve(path: Path): Path; }