steam-family-bot-core
Version:
一个用于新版 Steam 家庭的库存监控 Bot 插件
33 lines (32 loc) • 724 B
TypeScript
import { Player } from '../../types/player';
export declare const axisStyle: {
axisLine: {
lineStyle: {
color: string;
};
};
axisLabel: {
color: string;
};
splitLine: {
lineStyle: {
color: string;
};
};
};
export declare const selectableColor: string[];
export declare const defaultTextStyle: {
color: string;
};
export declare function PlaytimeGraph({ playtime, players, style, }: {
playtime: {
steamid: string;
asOwnerLendTime: number;
asPlayerTime: number;
}[];
players: Player[];
style: {
height: number;
width: number;
};
}): import("react/jsx-runtime").JSX.Element;