@posx/core 5.3.92 → 5.3.94

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.d.ts CHANGED
@@ -2185,12 +2185,15 @@ declare module '@posx/core/types/config.type' {
2185
2185
  constructor();
2186
2186
  }
2187
2187
  export interface IPaymentConfig {
2188
+ /** Quick cash payment */
2189
+ quick_cash_payment: boolean;
2188
2190
  /** Notification for payment */
2189
2191
  notification: boolean;
2190
2192
  /** Quick payment option */
2191
2193
  quick: boolean;
2192
2194
  }
2193
2195
  export class PaymentConfig implements IPaymentConfig {
2196
+ quick_cash_payment: boolean;
2194
2197
  notification: boolean;
2195
2198
  quick: boolean;
2196
2199
  constructor();