UNPKG

tinkoff-invest-api

Version:
17 lines (15 loc) 309 B
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' >;