koishi-plugin-adapter-iirose
Version:
[IIROSE-蔷薇花园](https://iirose.com/)适配器
16 lines (15 loc) • 375 B
TypeScript
import { IIROSE_Bot } from '../../bot/bot';
export interface Stock {
unitPrice: number;
totalStock: number;
personalStock: number;
totalMoney: number;
personalMoney: number;
}
/**
* 解析股票信息
* @param message 消息
* @param bot bot实例
* @returns {Stock | null}
*/
export declare const stock: (message: string, bot: IIROSE_Bot) => Stock;