Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
412 B
TypeScript
9 lines
412 B
TypeScript
export type SupportedEncoding = "utf-8" | "utf8" | "utf-16le" | "us-ascii" | "ascii" | "latin1" | "iso-8859-1" | "windows-1252";
|
|
/**
|
|
* Decode text from binary data
|
|
* @param bytes Binary data
|
|
* @param encoding Encoding
|
|
*/
|
|
export declare function textDecode(bytes: Uint8Array, encoding?: SupportedEncoding): string;
|
|
export declare function textEncode(input?: string, encoding?: SupportedEncoding): Uint8Array;
|