@angular/material
Version:
Angular Material
24 lines (23 loc) • 837 B
TypeScript
/**
* @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 { CdkTextareaAutosize } from '@angular/cdk/text-field';
/**
* Directive to automatically resize a textarea to fit its content.
* @deprecated Use `cdkTextareaAutosize` from `@angular/cdk/text-field` instead.
* @breaking-change 8.0.0
*/
export declare class MatTextareaAutosize extends CdkTextareaAutosize {
get matAutosizeMinRows(): number;
set matAutosizeMinRows(value: number);
get matAutosizeMaxRows(): number;
set matAutosizeMaxRows(value: number);
get matAutosize(): boolean;
set matAutosize(value: boolean);
get matTextareaAutosize(): boolean;
set matTextareaAutosize(value: boolean);
}