FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
types
/
components
/
ui
/
price
Edit File: sc-price.d.ts
/** * Internal dependencies. */ export declare class ScProductPrice { /** The currency. */ currency: string; /** The amount */ amount: number; /** The scratch amount */ scratchAmount: number; /** The scratch display amount */ scratchDisplayAmount: string; /** The display amount */ displayAmount: string; /** The sale text */ saleText: string; /** Is the product ad_hoc? */ adHoc: boolean; /** The recurring period count */ recurringPeriodCount: number; /** The recurring interval count */ recurringIntervalCount: number; /** The recurring interval */ recurringInterval: 'week' | 'month' | 'year' | 'never'; /** The setup fee amount */ setupFeeAmount: number; /** The setup fee text */ setupFeeText: string; /** The trial duration days */ trialDurationDays: number; /** The setup fee name */ setupFeeName: string; render(): any; }
Save
Back