export interface TruncationOptions {
    /**
     * truncation configuration
     */
    /**
     * truncation type
     */
    type?: string;
    /**
     * truncation threshold
     */
    threshold?: number;
    /**
     * how many characters to be shown
     */
    numCharacter?: number;
}
