UNPKG

@material/web

Version:
17 lines (16 loc) 399 B
/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { Progress } from './progress.js'; /** * A linear progress component. */ export declare class LinearProgress extends Progress { /** * Buffer amount to display, a fraction between 0 and `max`. */ buffer: number; protected renderIndicator(): import("lit-html").TemplateResult<1>; }