File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
export { UiScrollModule } from './src/ui-scroll.module' ;
2
2
export { UiScrollDirective } from './src/ui-scroll.directive' ;
3
3
export { Datasource } from './src/ui-scroll.datasource' ;
4
- export { IAdapter , IDatasource } from './src/types' ;
4
+ export {
5
+ RoutinesClassType ,
6
+ IAdapter ,
7
+ IDatasource ,
8
+ IAngularDatasourceParams ,
9
+ IAngularDatasourceConstructed
10
+ } from './src/types' ;
5
11
export { Routines , SizeStrategy } from './src/vscroll' ;
Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ interface IAngularAdapter<Data = unknown>
28
28
extends _Omit < IAdapter < Data > , keyof IReactiveOverride < Data > > ,
29
29
IReactiveOverride < Data > { }
30
30
31
- interface IAngularDatasourceParams < Data = unknown >
31
+ export interface IAngularDatasourceParams < Data = unknown >
32
32
extends _Omit < IDatasource < Data > , 'adapter' > { }
33
33
34
34
interface IAngularDatasource < Data = unknown >
35
35
extends _Omit < IDatasource < Data > , 'adapter' > {
36
36
adapter ?: IAngularAdapter < Data > ;
37
37
}
38
38
39
- interface IAngularDatasourceConstructed < Data = unknown >
39
+ export interface IAngularDatasourceConstructed < Data = unknown >
40
40
extends _Omit < IDatasourceConstructed < Data > , 'adapter' > {
41
41
adapter : IAngularAdapter < Data > ;
42
42
}
You can’t perform that action at this time.
0 commit comments