UNPKG

@angular-devkit/build-angular

Version:
19 lines (18 loc) 602 B
/** * @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 { BudgetEntry } from '@angular/build/private'; import { Compiler } from 'webpack'; /** * Check budget sizes for component styles by emitting a warning or error if a * budget is exceeded by a particular component's styles. */ export declare class AnyComponentStyleBudgetChecker { private readonly budgets; constructor(budgets: BudgetEntry[]); apply(compiler: Compiler): void; }