// Type definitions for convert-string 0.1 // Project: https://github.com/baz/foo (Does not have to be to GitHub, but prefer linking to a source code repository rather than to a project website.) // Definitions by: Haseeb Majid // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped export namespace convertString { function stringToBytes(str: string): number[]; function bytesToString(bytes: number[]): string; namespace UTF8 { function stringToBytes(str: string): number[]; function bytesToString(bytes: number[]): string; } }