source: trip-planner-front/node_modules/@angular/cdk/drag-drop/directives/drag-handle.d.ts.map@ eed0bf8

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

adding new components

  • Property mode set to 100644
File size: 1.6 KB
Line 
1{"version":3,"file":"drag-handle.d.ts","sources":["drag-handle.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;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 { BooleanInput } from '@angular/cdk/coercion';\nimport { ElementRef, InjectionToken, OnDestroy } from '@angular/core';\nimport { Subject } from 'rxjs';\n/**\n * Injection token that can be used to reference instances of `CdkDragHandle`. It serves as\n * alternative token to the actual `CdkDragHandle` class which could cause unnecessary\n * retention of the class and its directive metadata.\n */\nexport declare const CDK_DRAG_HANDLE: InjectionToken<CdkDragHandle>;\n/** Handle that can be used to drag a CdkDrag instance. */\nexport declare class CdkDragHandle implements OnDestroy {\n element: ElementRef<HTMLElement>;\n /** Closest parent draggable instance. */\n _parentDrag: {} | undefined;\n /** Emits when the state of the handle has changed. */\n readonly _stateChanges: Subject<CdkDragHandle>;\n /** Whether starting to drag through this handle is disabled. */\n get disabled(): boolean;\n set disabled(value: boolean);\n private _disabled;\n constructor(element: ElementRef<HTMLElement>, parentDrag?: any);\n ngOnDestroy(): void;\n static ngAcceptInputType_disabled: BooleanInput;\n}\n"]}
Note: See TracBrowser for help on using the repository browser.