@nativewrappers/fivem
Version:
Native wrappers and utilities for use with FiveM.
15 lines (14 loc) • 478 B
TypeScript
import { Rectangle } from "../../../../ui/Rectangle";
import { Text } from "../../../../ui/Text";
export declare class UIMenuStatisticsPanelItem {
readonly id: string;
readonly text: Text;
readonly activeBar: Rectangle;
readonly backgroundBar: Rectangle;
readonly divider: Rectangle[];
constructor(name: string, percentage?: number);
get Name(): string;
set Name(value: string);
get Percentage(): number;
set Percentage(value: number);
}