Skip to content
Snippets Groups Projects
app-material.module.js 2.15 KiB
Newer Older
  • Learn to ignore specific revisions
  • "use strict";
    var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
        var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
        if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
        else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
        return c > 3 && r && Object.defineProperty(target, key, r), r;
    };
    Object.defineProperty(exports, "__esModule", { value: true });
    var core_1 = require("@angular/core");
    var material_1 = require("@angular/material");
    var AppMaterialModule = (function () {
        function AppMaterialModule() {
        }
        return AppMaterialModule;
    }());
    AppMaterialModule = __decorate([
        core_1.NgModule({
            imports: [
    
                material_1.MatCheckboxModule,
                material_1.MatSelectModule,
                material_1.MatSlideToggleModule,
                material_1.MatInputModule,
                material_1.MatTooltipModule,
                material_1.MatTabsModule,
                material_1.MatSidenavModule,
                material_1.MatButtonModule,
                material_1.MatCardModule,
                material_1.MatButtonToggleModule,
                material_1.MatProgressSpinnerModule,
                material_1.MatToolbarModule,
                material_1.MatMenuModule,
                material_1.MatGridListModule
    
            ],
            exports: [
    
                material_1.MatCheckboxModule,
                material_1.MatSelectModule,
                material_1.MatSlideToggleModule,
                material_1.MatInputModule,
                material_1.MatTooltipModule,
                material_1.MatTabsModule,
                material_1.MatSidenavModule,
                material_1.MatButtonModule,
                material_1.MatCardModule,
                material_1.MatButtonToggleModule,
                material_1.MatProgressSpinnerModule,
                material_1.MatToolbarModule,
                material_1.MatMenuModule,
                material_1.MatGridListModule
    
            ]
        })
    ], AppMaterialModule);
    exports.AppMaterialModule = AppMaterialModule;