modify-qris
Version:
Modify QRIS Generator is a javascript based libraries that enabling flexible payments with customizable amounts for improved efficiency and user experience
12 lines (11 loc) • 335 B
TypeScript
export interface Config {
sourceType?: string;
sourceValue?: string;
merchantName?: string | null;
merchantAddress?: string | null;
merchantPostalCode?: string | null;
amount?: number | null | undefined;
feeCategory?: string | null;
fee?: number | null | undefined;
terminalLabel?: string | null;
}