UNPKG

@voiceiq/web-components

Version:

VoiceIQ Web Component library

16 lines (15 loc) 414 B
/** * Utility class to manage string functions */ declare class StringUtil { /** * Reduces a given string into it's initials */ initialsFromText: (text: string) => string[]; /** * Reduces the given string into it's initials and converts them to numbers */ numberFromText: (text: string) => number; } declare const _default: StringUtil; export default _default;