mirror of
https://github.com/misskey-dev/summaly.git
synced 2025-04-29 02:37:27 +09:00
9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
/// <reference types="node" />
|
|
/**
|
|
* Detect HTML encoding
|
|
* @param body Body in Buffer
|
|
* @returns encoding
|
|
*/
|
|
export declare function detectEncoding(body: Buffer): string;
|
|
export declare function toUtf8(body: Buffer, encoding: string): string;
|