helpers.d.ts 629 B

123456789101112131415161718
  1. /**
  2. * @returns {String} the string with all zeroes contained in a <span>
  3. */
  4. export declare function spanAllZeroes(s: string): string;
  5. /**
  6. * @returns {String} the string with each character contained in a <span>
  7. */
  8. export declare function spanAll(s: string, offset?: number): string;
  9. /**
  10. * @returns {String} the string with leading zeroes contained in a <span>
  11. */
  12. export declare function spanLeadingZeroes(address: string): string;
  13. /**
  14. * Groups an address
  15. * @returns {String} a grouped address
  16. */
  17. export declare function simpleGroup(addressString: string, offset?: number): string[];
  18. //# sourceMappingURL=helpers.d.ts.map