calculate-items
Version:
Items calculation template
11 lines (10 loc) • 424 B
TypeScript
import { Item, ItemsResult } from "../types/types";
export default class ItemsParser {
static getItemsResult(exp: string): ItemsResult;
static getExpItems(exp: string): Item[];
static getTemplateItems(templateExp?: string): Item[];
static calculateResultFromExpression(exp?: string): ItemsResult;
private static getValueAndType;
private static getSplitItems;
private static getMembersFromName;
}