amotify 0.0.23 → 0.0.25

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.
@@ -68,17 +68,10 @@ declare global {
68
68
  type SheetParams = {
69
69
  sheetName: string
70
70
  rows: RowParams[]
71
- headers?: HeaderParams[]
72
71
  merges?: MergeTypes[]
73
72
  styles?: StyleTypes[]
74
73
  }
75
- type HeaderParams = {
76
- key: string
77
- value: string
78
- }
79
- type RowParams = {
80
- [ key: string ]: string | number
81
- }
74
+ type RowParams = ( string | number )[]
82
75
  type MergeTypes = [ string,string ] | [ null,null ]
83
76
  type StyleTypes = {
84
77
  type: 'cell' | 'row' | 'column'