We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3947a4e commit 8a32a73Copy full SHA for 8a32a73
packages/excel-builder-vanilla/src/interfaces/interfaces.ts
@@ -114,12 +114,14 @@ type ExcelMetadataType =
114
| 'special'
115
| 'custom';
116
117
+export interface ExcelMetadata {
118
+ type?: string;
119
+ style?: number;
120
+}
121
+
122
export interface ExcelColumnMetadata {
123
value: any;
- metadata?: {
- type?: string;
- style?: number;
- };
124
+ metadata?: ExcelMetadata;
125
}
126
127
export interface ExcelMargin {
0 commit comments