Skip to content

Commit f9cd330

Browse files
committed
fix type
1 parent 03a962f commit f9cd330

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

apps/sim/tools/onedrive/types.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ export interface OneDriveToolParams {
9999
pageToken?: string
100100
exportMimeType?: string
101101
// Optional Excel write parameters (used when creating an .xlsx without file content)
102-
values?: (string | number | boolean | null)[][]
102+
values?:
103+
| (string | number | boolean | null)[][]
104+
| Array<Record<string, string | number | boolean | null>>
103105
}
104106

105107
export type OneDriveResponse =

0 commit comments

Comments
 (0)