Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@fbinhouse/spark-client / dist / client / sessionStateUpdate.d.ts
Size: Mime:
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;