@material/web
Version:
Material web components
20 lines (19 loc) • 443 B
TypeScript
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import { OutlinedField } from './internal/outlined-field.js';
declare global {
interface HTMLElementTagNameMap {
'md-outlined-field': MdOutlinedField;
}
}
/**
* TODO(b/228525797): add docs
* @final
* @suppress {visibility}
*/
export declare class MdOutlinedField extends OutlinedField {
static styles: import("lit").CSSResult[];
}