mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-13 11:46:03 +09:00
Clean up the oopsie. Rebuild the blank exercises.
This commit is contained in:
+2
-2
@@ -6,9 +6,9 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
declare module 'iconv-lite' {
|
||||
export function decode(buffer: NodeBuffer, encoding: string, options?: Options): string;
|
||||
export function decode(buffer: Buffer, encoding: string, options?: Options): string;
|
||||
|
||||
export function encode(content: string, encoding: string, options?: Options): NodeBuffer;
|
||||
export function encode(content: string, encoding: string, options?: Options): Buffer;
|
||||
|
||||
export function encodingExists(encoding: string): boolean;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user