mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 01:25:37 -05:00
* remove builder; more null checks * null checks * formatting * wip * fix dropdown themeing * formatting * formatting * fix tests * update what files are checked * add code to help refresh bad nodes
21 lines
887 B
TypeScript
21 lines
887 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { TabComponent } from './tab.component';
|
|
import { TabHeaderComponent } from './tabHeader.component';
|
|
import { PanelComponent } from './panel.component';
|
|
|
|
import { ScrollableModule } from 'sql/base/browser/ui/scrollable/scrollable.module';
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, ScrollableModule],
|
|
exports: [TabComponent, PanelComponent],
|
|
declarations: [TabComponent, TabHeaderComponent, PanelComponent]
|
|
})
|
|
export class PanelModule { }
|