Skip to content

Commit

Permalink
fix(types): fix signature of updateSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Jul 3, 2023
1 parent ed1856d commit 24e7aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/types/lib/driver.ts
Expand Up @@ -378,7 +378,7 @@ export interface ISettingsCommands<T extends StringRecord = StringRecord> {
* @param settings - A key-value map of setting names to values. Settings not named in the map
* will not have their value adjusted.
*/
updateSettings: (settings: StringRecord) => Promise<void>;
updateSettings: (settings: T) => Promise<void>;

/**
* Get the current settings for the session
Expand Down

0 comments on commit 24e7aec

Please sign in to comment.