Update clipboard values to any
This commit is contained in:
parent
296d5dfb55
commit
cab40c8da1
|
@ -6,11 +6,11 @@ import { Store as StoreContext } from "."
|
|||
|
||||
type ClipboardStoreData =
|
||||
| {
|
||||
value: string[][]
|
||||
value: any[][]
|
||||
multiCellCopy: true
|
||||
}
|
||||
| {
|
||||
value: string | null | undefined
|
||||
value: any | null | undefined
|
||||
multiCellCopy: false
|
||||
}
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@ export interface UIStore {
|
|||
focusedCellId: Writable<string | null>
|
||||
focusedCellAPI: Writable<{
|
||||
isReadonly: () => boolean
|
||||
getValue: () => string
|
||||
setValue: (val: string | null) => void
|
||||
getValue: () => any
|
||||
setValue: (val: any) => void
|
||||
} | null>
|
||||
selectedRows: Writable<Record<string, boolean>>
|
||||
hoveredRowId: Writable<string | null>
|
||||
|
|
Loading…
Reference in New Issue