UNPKG

@exode-team/ofd-uz

Version:

Node.js module for interacting with OFD tax system

13 lines (12 loc) 416 B
/** * OFDClient * * @author: exode <hello@exode.ru> */ export * from './types'; export * from './client'; export declare const OFD_TEST_URL = "https://test.ofd.uz"; export declare const OFD_PROD_URL = "https://ofd.uz"; export declare function createTimestamp(): string; export declare function validatePhoneNumber(phone: string): boolean; export declare function calculateTotalAmount(items: Array<any>): number;