UNPKG

pricing4ts

Version:

![NPM Version](https://img.shields.io/npm/v/pricing4ts) Pricing4TS is a TypeScript-based toolkit designed to enhance the server-side functionality of a pricing-driven SaaS by enabling the seamless integration of pricing plans into the application logic. T

30 lines (29 loc) 1.01 kB
export interface Chunk { left: DZNKeywords; value: string; row?: DZNKeywords; col?: DZNKeywords; } export declare enum DZNKeywords { NumberOfFeatures = "num_features", NumberOfUsageLimits = "num_usage_limits", NumberOfPlans = "num_plans", NumberOfAddOns = "num_addons", Features = "features", UsageLimits = "usage_limits", Plans = "plans", AddOns = "addons", PlansPrices = "plans_prices", AddOnsPrices = "addons_prices", BooleanUsageLimits = "boolean_usage_limits", PlansFeatures = "plans_features", PlansUsageLimits = "plans_usage_limits", LinkedFeatures = "linked_features", AddOnsFeatures = "addons_features", AddOnsUsageLimits = "addons_usage_limits", AddOnsUsageLimitsExtensions = "addons_usage_limits_extensions", AddOnsAvailableFor = "addons_available_for", AddOnsDependsOn = "addons_depends_on", AddOnsExcludes = "addons_excludes" } export declare function saveDZNfile(source: string, savePath: string): void;