You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
1.0 KiB
1 lines
1.0 KiB
{"version":3,"file":"tab-content.d.ts","sources":["tab-content.d.ts"],"names":[],"mappings":"AAAA;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 { InjectionToken, TemplateRef } from '@angular/core';\n/**\n * Injection token that can be used to reference instances of `MatTabContent`. It serves as\n * alternative token to the actual `MatTabContent` class which could cause unnecessary\n * retention of the class and its directive metadata.\n */\nexport declare const MAT_TAB_CONTENT: InjectionToken<MatTabContent>;\n/** Decorates the `ng-template` tags and reads out the template from it. */\nexport declare class MatTabContent {\n /** Content for the tab. */ template: TemplateRef<any>;\n constructor(\n /** Content for the tab. */ template: TemplateRef<any>);\n}\n"]}
|