@accounter/server
Version:
Accounter GraphQL server
13 lines (12 loc) • 340 B
TypeScript
/**
* Fixed-width decoding utilities
*/
/**
* Decodes a fixed-width string value
*
* @param line - The line to decode from
* @param start - Start position (0-based)
* @param length - Field length
* @returns Decoded and trimmed value
*/
export declare function decodeFixedWidth(line: string, start: number, length: number): string;