Skip to content

Commit

Permalink
chore: type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsiemens committed Nov 26, 2024
1 parent 173c105 commit 556e135
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import { type UserPreferenceScopeType } from './user-preference-scope-type'
export interface UserPreferenceDefinition {
isOptedInByDefault: boolean
allowedScope: UserPreferenceScopeType
defaultData: unknown
defaultData: Record<string, unknown>
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export interface UserPreference {
optedIn: boolean
data?: unknown
data?: Record<string, unknown>
}

0 comments on commit 556e135

Please sign in to comment.