UNPKG

@covalent/core

Version:

Core Teradata UI Platform for layouts, icons, custom components and themes. This should be added as a dependency for any project that wants to use layouts, icons and themes for Angular Material.

11 lines (10 loc) 593 B
import { FocusOrigin } from '@angular/cdk/a11y'; import { OverlayRef } from '@angular/cdk/overlay'; import { MatDialogRef, _MatDialogContainerBase } from '@angular/material/dialog'; export declare class CovalentSideSheetRef<T, R = any> extends MatDialogRef<T, R> { overlayRef: OverlayRef; _containerInstance: _MatDialogContainerBase; readonly id: string; constructor(overlayRef: OverlayRef, _containerInstance: _MatDialogContainerBase, id?: string); } export declare function _closeSideSheetVia<R>(ref: CovalentSideSheetRef<R>, interactionType: FocusOrigin, result?: R): void;