source: trip-planner-front/node_modules/@angular/material/form-field/hint.d.ts.map@ fa375fe

Last change on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{"version":3,"file":"hint.d.ts","sources":["hint.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACA","sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\nimport { InjectionToken } from '@angular/core';\n/**\n * Injection token that can be used to reference instances of `MatHint`. It serves as\n * alternative token to the actual `MatHint` class which could cause unnecessary\n * retention of the class and its directive metadata.\n *\n * *Note*: This is not part of the public API as the MDC-based form-field will not\n * need a lightweight token for `MatHint` and we want to reduce breaking changes.\n */\nexport declare const _MAT_HINT: InjectionToken<MatHint>;\n/** Hint text to be shown underneath the form field control. */\nexport declare class MatHint {\n /** Whether to align the hint label at the start or end of the line. */\n align: 'start' | 'end';\n /** Unique ID for the hint. Used for the aria-describedby on the form field control. */\n id: string;\n}\n"]}
Note: See TracBrowser for help on using the repository browser.