source: trip-planner-front/node_modules/@angular/cdk/bidi/dir-document-token.d.ts@ 6c1585f

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

initial commit

  • Property mode set to 100644
File size: 963 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 { InjectionToken } from '@angular/core';
9/**
10 * Injection token used to inject the document into Directionality.
11 * This is used so that the value can be faked in tests.
12 *
13 * We can't use the real document in tests because changing the real `dir` causes geometry-based
14 * tests in Safari to fail.
15 *
16 * We also can't re-provide the DOCUMENT token from platform-brower because the unit tests
17 * themselves use things like `querySelector` in test code.
18 *
19 * This token is defined in a separate file from Directionality as a workaround for
20 * https://github.com/angular/angular/issues/22559
21 *
22 * @docs-private
23 */
24export declare const DIR_DOCUMENT: InjectionToken<Document>;
25/** @docs-private */
26export declare function DIR_DOCUMENT_FACTORY(): Document;
Note: See TracBrowser for help on using the repository browser.