Welcome to mirror list, hosted at ThFree Co, Russian Federation.

string_decoder.d.ts « node « @types « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe0e0b4d2da2639aa6a2b0ed04e36fef3185b19b (plain)
1
2
3
4
5
6
7
declare module "string_decoder" {
    class StringDecoder {
        constructor(encoding?: string);
        write(buffer: Buffer): string;
        end(buffer?: Buffer): string;
    }
}