source: trip-planner-front/node_modules/@angular/material/divider/divider.d.ts.__ivy_ngcc_bak@ 8d391a1

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

initial commit

  • Property mode set to 100644
File size: 664 bytes
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { BooleanInput } from '@angular/cdk/coercion';
9export declare class MatDivider {
10 /** Whether the divider is vertically aligned. */
11 get vertical(): boolean;
12 set vertical(value: boolean);
13 private _vertical;
14 /** Whether the divider is an inset divider. */
15 get inset(): boolean;
16 set inset(value: boolean);
17 private _inset;
18 static ngAcceptInputType_vertical: BooleanInput;
19 static ngAcceptInputType_inset: BooleanInput;
20}
Note: See TracBrowser for help on using the repository browser.