/** * Does a minimal effort conversion from Unicode to CP-1252, mostly used for * building legacy files such as kmp.inf, where the loss of Unicode data is * expected. Minimal effort because we don't bother with normalization, * compatibility conversion, non-BMP codepoints, etc. */ export declare function transcodeToCP1252(s: string): Uint8Array; //# sourceMappingURL=cp1252.d.ts.map