Skip to content

Commit

Permalink
Fix misspelled interface
Browse files Browse the repository at this point in the history
  • Loading branch information
scottybollinger committed Dec 2, 2020
1 parent 2be89ce commit 0e87a0f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

import { ApiToken } from '../credentials/types';
import { Schema, SchemaConflicts, IndexingStatus } from '../../../shared/types';
import { Schema, SchemaConflicts, IIndexingStatus } from '../../../shared/types';

export interface Engine {
name: string;
Expand All @@ -26,7 +26,7 @@ export interface EngineDetails extends Engine {
schema: Schema;
schemaConflicts?: SchemaConflicts;
unconfirmedFields?: string[];
activeReindexJob?: IndexingStatus;
activeReindexJob?: IIndexingStatus;
invalidBoosts: boolean;
sample?: boolean;
isMeta: boolean;
Expand Down

0 comments on commit 0e87a0f

Please sign in to comment.