@hashicorp/design-system-components
Version:
Helios Design System Components
25 lines (24 loc) • 665 B
TypeScript
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import Component from '@glimmer/component';
export interface HdsFormTextareaBaseSignature {
Args: {
isInvalid?: boolean;
value?: string;
width?: string;
height?: string;
id?: string;
ariaDescribedBy?: string;
};
Element: HTMLElement;
}
export default class HdsFormTextareaBase extends Component<HdsFormTextareaBaseSignature> {
/**
* Get the class names to apply to the component.
* @method classNames
* @return {string} The "class" attribute to apply to the component.
*/
get classNames(): string;
}