-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
68 lines (60 loc) · 1.49 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { NgModule, ModuleWithProviders, NgZone } from '@angular/core';
import { CommonModule } from '@angular/common';
import { NgxPaginationModule } from 'ngx-pagination';
/**
* import module interfaces
*/
import { IFluidGridConfig } from './src/interfaces/IFluidGridConfig';
/**
* import module components
*/
import { FluidGridComponent } from './src/components/FluidGrid';
/**
* Create export barrel.
*/
export {
IFluidGridConfig,
FluidGridComponent
}
/**
* Main module for the Angular Fluid Grid.
*
* @export
* @class FluidGridModule
*/
@NgModule({
declarations: [
FluidGridComponent
],
imports: [
CommonModule,
NgxPaginationModule],
exports: [
CommonModule,
FluidGridComponent
]
///
/// do not add providers here. Since this is a module, providers are created in the forRoot call.
/// this will allow the module to be used in lazy loading situations.
///
})
export class FluidGridModule {
/**
* Call this method from the consuming applications root module to create service instances for injection.
* Do not call this method from any feature modules.
*
* @static
* @returns {ModuleWithProviders}
* @memberof FluidGridModule
*/
static forRoot(): ModuleWithProviders {
return {
ngModule: FluidGridModule,
providers: [
///
/// add providers here.
///
]
}
}
}