Skip to content

Commit

Permalink
Renamed Iboost
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonStoltz committed Feb 3, 2021
1 parent 074190a commit 2ff1eef
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

export type BoostType = 'value' | 'functional' | 'proximity';

export interface IBoost {
export interface Boost {
type: BoostType;
operation?: string;
function?: string;
Expand All @@ -17,7 +17,7 @@ export interface IBoost {
}

export interface BoostObject {
[key: string]: IBoost[];
[key: string]: Boost[];
}

export interface SearchSettings {
Expand Down

0 comments on commit 2ff1eef

Please sign in to comment.