source: trip-planner-front/node_modules/@angular/material/sidenav/sidenav.d.ts@ 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: 1.7 KB
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 { ChangeDetectorRef, QueryList, ElementRef, NgZone } from '@angular/core';
9import { MatDrawer, MatDrawerContainer, MatDrawerContent } from './drawer';
10import { BooleanInput, NumberInput } from '@angular/cdk/coercion';
11import { ScrollDispatcher } from '@angular/cdk/scrolling';
12export declare class MatSidenavContent extends MatDrawerContent {
13 constructor(changeDetectorRef: ChangeDetectorRef, container: MatSidenavContainer, elementRef: ElementRef<HTMLElement>, scrollDispatcher: ScrollDispatcher, ngZone: NgZone);
14}
15export declare class MatSidenav extends MatDrawer {
16 /** Whether the sidenav is fixed in the viewport. */
17 get fixedInViewport(): boolean;
18 set fixedInViewport(value: boolean);
19 private _fixedInViewport;
20 /**
21 * The gap between the top of the sidenav and the top of the viewport when the sidenav is in fixed
22 * mode.
23 */
24 get fixedTopGap(): number;
25 set fixedTopGap(value: number);
26 private _fixedTopGap;
27 /**
28 * The gap between the bottom of the sidenav and the bottom of the viewport when the sidenav is in
29 * fixed mode.
30 */
31 get fixedBottomGap(): number;
32 set fixedBottomGap(value: number);
33 private _fixedBottomGap;
34 static ngAcceptInputType_fixedInViewport: BooleanInput;
35 static ngAcceptInputType_fixedTopGap: NumberInput;
36 static ngAcceptInputType_fixedBottomGap: NumberInput;
37}
38export declare class MatSidenavContainer extends MatDrawerContainer {
39 _allDrawers: QueryList<MatSidenav>;
40 _content: MatSidenavContent;
41}
Note: See TracBrowser for help on using the repository browser.