UNPKG

@angular/material

Version:
16 lines (15 loc) 623 B
/** * @license * Copyright Google Inc. 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 { InjectionToken } from '@angular/core'; /** InjectionToken that can be used to specify the global placeholder options. */ export declare const MAT_PLACEHOLDER_GLOBAL_OPTIONS: InjectionToken<PlaceholderOptions>; /** Type for the available floatPlaceholder values. */ export declare type FloatPlaceholderType = 'always' | 'never' | 'auto'; export interface PlaceholderOptions { float?: FloatPlaceholderType; }