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) • 332 B
TypeScript
/**
* CRC16CCITT implementation for generating CRC codes
*/
export declare class CRC16CCITT {
/**
* Generate CRC16-CCITT input from input string
* @param input Input string to generate CRC from
* @returns Uppercase hexadecimal representation of the CRC
*/
static generateCode(input: string): string;
}