{"version":3,"file":"directionality.d.ts","sources":["directionality.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","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 { EventEmitter, OnDestroy } from '@angular/core';\nexport declare type Direction = 'ltr' | 'rtl';\n/**\n * The directionality (LTR / RTL) context for the application (or a subtree of it).\n * Exposes the current direction and a stream of direction changes.\n */\nexport declare class Directionality implements OnDestroy {\n /** The current 'ltr' or 'rtl' value. */\n readonly value: Direction;\n /** Stream that emits whenever the 'ltr' / 'rtl' state changes. */\n readonly change: EventEmitter;\n constructor(_document?: any);\n ngOnDestroy(): void;\n}\n"]}