Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
maxschmeling committed Apr 22, 2024
1 parent 058d8a5 commit cddecd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/lib/app-slowlogs/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@ export interface DefaultOptions {

export type SlowlogFormats = 'json' | 'csv' | 'table';

type Stringable =
| string
| { toString: () => string };
type Stringable = string | { toString: () => string };

export interface GetSlowLogsOptions extends DefaultOptions {
limit: number;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/cli/format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface Tuple {
value: string;
}

type Stringable = string | { toString: () => string; };
type Stringable = string | { toString: () => string };

export type OutputFormat = 'keyValue' | 'ids' | 'json' | 'csv' | 'table';

Expand Down

0 comments on commit cddecd5

Please sign in to comment.