spookvooper-api/typings/modules/Stock.d.ts

14 lines
349 B
TypeScript
Raw Normal View History

2020-12-22 05:29:13 +00:00
import { QueueType } from './types/Types'
2020-12-22 05:29:13 +00:00
declare class Stock {
private readonly stockTicker
get ticker (): string;
set ticker (ticker: string);
constructor (ticker: string);
getValue (): Promise<any>;
getBuyPrice (): Promise<any>;
getQueueInfo (type: QueueType): Promise<any>;
getOwnerData (): Promise<any>;
}
export default Stock