UNPKG

matcha-stock

Version:

A simple CLI command to get stocks information from Yahoo Finance

12 lines (11 loc) 384 B
import { Command, flags } from '@oclif/command'; declare class MatchaStock extends Command { static description: string; static flags: { version: import("@oclif/parser/lib/flags").IBooleanFlag<void>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; symbol: flags.IOptionFlag<string>; }; run(): Promise<void>; } export = MatchaStock;