chore(): tidying, consolidate repetitive types

This commit is contained in:
tiagosiebler
2023-02-15 11:33:22 +00:00
parent 145f17d4f1
commit 47e1255159
8 changed files with 179 additions and 109 deletions

View File

@@ -1,5 +1,6 @@
export * from './account-asset';
export * from './copy-trading';
export * from './contract';
export * from './linear';
export * from './inverse';
export * from './spot';
@@ -8,5 +9,5 @@ export * from './usdc-options';
export * from './usdc-shared';
export * from './unified-margin';
export * from './v5-market';
export * from './contract';
export * from './v5-position';
export * from './v5-trade';

View File

@@ -0,0 +1,10 @@
import { CategoryV5 } from '../v5-shared';
export interface PositionInfoParamsV5 {
category: CategoryV5;
symbol?: string;
baseCoin?: string;
settleCoin?: string;
limit?: number;
cursor?: string;
}