```ts const keysToSkip = ["value"] as const; const changeset = diff(storedConfiguration, defaultConfiguration, { keysToSkip: keysToSkip }); ``` this throws an error, as only `string[]` is accepted. I don't see a reason why don't accept readonly arrays as well.