source: trip-planner-front/node_modules/@angular/material/core/common-behaviors/common-module.d.ts.map@ 59329aa

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

initial commit

  • Property mode set to 100644
File size: 2.2 KB
Line 
1{"version":3,"file":"common-module.d.ts","sources":["common-module.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;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 { HighContrastModeDetector } from '@angular/cdk/a11y';\nimport { InjectionToken } from '@angular/core';\n/** @docs-private */\nexport declare function MATERIAL_SANITY_CHECKS_FACTORY(): SanityChecks;\n/** Injection token that configures whether the Material sanity checks are enabled. */\nexport declare const MATERIAL_SANITY_CHECKS: InjectionToken<SanityChecks>;\n/**\n * Possible sanity checks that can be enabled. If set to\n * true/false, all checks will be enabled/disabled.\n */\nexport declare type SanityChecks = boolean | GranularSanityChecks;\n/** Object that can be used to configure the sanity checks granularly. */\nexport interface GranularSanityChecks {\n doctype: boolean;\n theme: boolean;\n version: boolean;\n}\n/**\n * Module that captures anything that should be loaded and/or run for *all* Angular Material\n * components. This includes Bidi, etc.\n *\n * This module should be imported to each top-level component module (e.g., MatTabsModule).\n */\nexport declare class MatCommonModule {\n /** Whether we've done the global sanity checks (e.g. a theme is loaded, there is a doctype). */\n private _hasDoneGlobalChecks;\n /** Configured sanity checks. */\n private _sanityChecks;\n /** Used to reference correct document/window */\n protected _document: Document;\n constructor(highContrastModeDetector: HighContrastModeDetector, sanityChecks: any, document: any);\n /** Gets whether a specific sanity check is enabled. */\n private _checkIsEnabled;\n private _checkDoctypeIsDefined;\n private _checkThemeIsPresent;\n /** Checks whether the material version matches the cdk version */\n private _checkCdkVersionMatch;\n}\n"]}
Note: See TracBrowser for help on using the repository browser.