Repository URL to install this package:
|
Version:
1.1.3 ▾
|
import DisplayPrice from './displayPrice';
import Loan from './loan';
import MenuItem from './menuItem';
import MenuNode from './menuNode';
export declare class SessionStateUpdate {
readonly menuItems: MenuItem[];
readonly menuTree: MenuNode;
readonly subscriptionIds: string[];
readonly complexSubscriptions: MenuItem[];
readonly activeMenu: string;
readonly activeItem: string;
readonly totalPrice: DisplayPrice;
readonly totalPriceText: string;
readonly modelId: string;
readonly groupId: string;
readonly serie: number;
readonly frame: number;
readonly imageFilename: string;
readonly maskFilename: string;
readonly isWrap: boolean;
readonly isReversed: boolean;
readonly category: string;
readonly loan: null | Loan;
constructor(menuItems: MenuItem[], menuTree: MenuNode, subscriptionIds: string[], complexSubscriptions: MenuItem[], activeMenu: string, activeItem: string, totalPrice: DisplayPrice, totalPriceText: string, modelId: string, groupId: string, serie: number, frame: number, imageFilename: string, maskFilename: string, isWrap: boolean, isReversed: boolean, category: string, loan: null | Loan);
}
export default SessionStateUpdate;