File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1+ declare class PivotData {
2+ constructor ( inputProps ?: any )
3+ props : any
4+ getRowKeys ( ) : any [ ]
5+ getColKeys ( ) : any [ ]
6+ getAggregator ( rowKey : any , colKey : any ) : any
7+ [ key : string ] : any
8+ }
9+
10+ declare const aggregators : Record < string , any >
11+ declare const aggregatorTemplates : Record < string , any >
12+ declare const locales : Record < string , any >
13+ declare const naturalSort : ( a : any , b : any ) => number
14+ declare const numberFormat : ( opts ?: any ) => any
15+ declare const getSort : any
16+ declare const sortAs : any
17+ declare const derivers : any
18+
19+ export {
20+ PivotData ,
21+ aggregators ,
22+ aggregatorTemplates ,
23+ locales ,
24+ naturalSort ,
25+ numberFormat ,
26+ getSort ,
27+ sortAs ,
28+ derivers
29+ }
Original file line number Diff line number Diff line change @@ -20,7 +20,12 @@ export default defineConfig({
2020 outDir : 'dist/types' ,
2121 staticImport : true ,
2222 insertTypesEntry : true ,
23- rollupTypes : true
23+ rollupTypes : true ,
24+ compilerOptions : {
25+ paths : {
26+ '@/helper/utilities' : [ './src/helper/utilities.d.ts' ]
27+ }
28+ }
2429 } )
2530 ] ,
2631 build : {
You can’t perform that action at this time.
0 commit comments