tinkoff-invest-api
Version:
Node.js SDK for Tinkoff Invest API
17 lines (15 loc) • 309 B
text/typescript
import { RealAccount } from './real.js';
export type OmitAccount<T> = Omit<T, 'accountId'>;
export type CommonAccountMethods = Pick<RealAccount,
'accountId'
| 'api'
| 'isSandbox'
| 'getInfo'
| 'getPortfolio'
| 'getOperations'
| 'getPositions'
| 'getOrders'
| 'getOrderState'
| 'postOrder'
| 'cancelOrder'
>;