We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03a962f commit f9cd330Copy full SHA for f9cd330
1 file changed
apps/sim/tools/onedrive/types.ts
@@ -99,7 +99,9 @@ export interface OneDriveToolParams {
99
pageToken?: string
100
exportMimeType?: string
101
// Optional Excel write parameters (used when creating an .xlsx without file content)
102
- values?: (string | number | boolean | null)[][]
+ values?:
103
+ | (string | number | boolean | null)[][]
104
+ | Array<Record<string, string | number | boolean | null>>
105
}
106
107
export type OneDriveResponse =
0 commit comments