Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Phelps <[email protected]>
  • Loading branch information
markphelps committed Sep 20, 2024
1 parent f5f18c3 commit cbb0a8b
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 8 deletions.
9 changes: 7 additions & 2 deletions flipt-client-browser/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@ import {
EvaluationResponse,
Flag,
IFetcher,
VariantEvaluationResponse,
VariantEvaluationResponse
} from './models';

import { VariantResult, BooleanResult, BatchResult, ListFlagsResult } from './internal/models';
import {
VariantResult,
BooleanResult,
BatchResult,
ListFlagsResult
} from './internal/models';

export class FliptEvaluationClient {
private engine: Engine;
Expand Down
7 changes: 6 additions & 1 deletion flipt-client-browser/src/internal/models.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import { BatchEvaluationResponse, BooleanEvaluationResponse, Flag, VariantEvaluationResponse } from "../models";
import {
BatchEvaluationResponse,
BooleanEvaluationResponse,
Flag,
VariantEvaluationResponse
} from '../models';

/**
* Represents a specialized result object for variant evaluation, extending
Expand Down
1 change: 0 additions & 1 deletion flipt-client-browser/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,3 @@ export interface BatchEvaluationResponse {
/** Duration of the request in milliseconds. */
requestDurationMillis: number;
}

9 changes: 7 additions & 2 deletions flipt-client-node/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@ import {
BatchEvaluationResponse,
ErrorEvaluationResponse,
EvaluationResponse,
Flag,
Flag
} from './models';

import { VariantResult, BooleanResult, BatchResult, ListFlagsResult } from './internal/models';
import {
VariantResult,
BooleanResult,
BatchResult,
ListFlagsResult
} from './internal/models';

export class FliptEvaluationClient {
private engine: Engine;
Expand Down
7 changes: 6 additions & 1 deletion flipt-client-node/src/internal/models.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import {Flag, VariantEvaluationResponse, BooleanEvaluationResponse, BatchEvaluationResponse } from "../models";
import {
Flag,
VariantEvaluationResponse,
BooleanEvaluationResponse,
BatchEvaluationResponse
} from '../models';
/**
* Represents a specialized result object for variant evaluation, extending
* the generic Result interface with a specific type VariantEvaluationResponse.
Expand Down
1 change: 0 additions & 1 deletion flipt-client-node/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,4 +191,3 @@ export interface BatchEvaluationResponse {
/** Duration of the request in milliseconds. */
requestDurationMillis: number;
}

0 comments on commit cbb0a8b

Please sign in to comment.