Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-cll committed Jul 29, 2024
1 parent 03ec56f commit f8b1348
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/adapter/market-status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import { AdapterEndpoint } from './endpoint'
*/
export type MarketStatusEndpointInputParametersDefinition = InputParametersDefinition & {
market: {
aliases: readonly [],
type: 'string',
description: 'The name of the market',
required: boolean,
},
aliases: readonly []
type: 'string'
description: 'The name of the market'
required: boolean
}
}

/**
Expand Down Expand Up @@ -51,4 +51,6 @@ export type MarketStatusEndpointGenerics = TransportGenerics & {
* A MarketStatusEndpoint is a specific type of AdapterEndpoint. Meant to comply with standard practices for
* Data Feeds, its InputParameters must extend the basic ones (base).
*/
export class MarketStatusEndpoint<T extends MarketStatusEndpointGenerics> extends AdapterEndpoint<T> {}
export class MarketStatusEndpoint<
T extends MarketStatusEndpointGenerics,
> extends AdapterEndpoint<T> {}

0 comments on commit f8b1348

Please sign in to comment.