pangea-lib 4.0.15 → 4.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
columns: Record<string, number>;
|
|
4
|
-
};
|
|
1
|
+
import { ExcelConfig } from '../../../types';
|
|
2
|
+
|
|
5
3
|
declare function resetInput(): void;
|
|
6
4
|
declare const _default: import('vue').DefineComponent<{
|
|
7
5
|
isReadingFile: import('vue').PropType<boolean>;
|
|
@@ -27,3 +27,7 @@ export type BoolOrFn = OrFn<boolean>;
|
|
|
27
27
|
export type Align = 'center' | 'left' | 'right';
|
|
28
28
|
export type DatetimeFormat = 'numeric' | 'short' | 'long';
|
|
29
29
|
export type FileSource = 'static' | 'dynamic';
|
|
30
|
+
export type ExcelConfig = {
|
|
31
|
+
firstRow: number;
|
|
32
|
+
columns: Record<string, number>;
|
|
33
|
+
};
|