pricing4ts
Version:
 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
5 lines (4 loc) • 319 B
TypeScript
import { Pricing } from '../../main/models/pricing2yaml/pricing';
export declare function retrievePricingFromPath(yamlPath: string): Pricing;
export declare function writePricingToYaml(pricing: Pricing, yamlPath: string): void;
export declare function writePricingWithErrorToYaml(pricing: any, yamlPath: string): void;