@progress/kendo-angular-dropdowns
Version:
Dropdowns Package for Angular 2
34 lines (33 loc) • 942 B
TypeScript
/**
* Represents the [NgModule](https://angular.io/docs/ts/latest/guide/ngmodule.html)
* definition for the DropDowns components.
*
* @example
*
* ```ts-no-run
* // Import the DropDowns module
* import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
*
* // The browser platform with a compiler
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
*
* import { NgModule } from '@angular/core';
*
* // Import the app component
* import { AppComponent } from './app.component';
*
* // Define the app module
* _@NgModule({
* declarations: [AppComponent], // declare app component
* imports: [BrowserModule, DropDownsModule], // import DropDowns module
* bootstrap: [AppComponent]
* })
* export class AppModule {}
*
* // Compile and launch the module
* platformBrowserDynamic().bootstrapModule(AppModule);
*
* ```
*/
export declare class DropDownsModule {
}