summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/truncate/truncate.d.ts
blob: f2778db38b745ad765e63d7a945660748790273d (plain)
1
2
3
4
5
6
7
declare module 'truncate' {
    interface TruncateOptions {
        ellipsis?: string
    }

    export default function truncate(string: string, maxLength: number, options?: TruncateOptions): string
}