@abaplint/runtime
Version:
Transpiler - Runtime
23 lines (22 loc) • 669 B
TypeScript
import { Hex } from "./hex";
import { ICharacter } from "./_character";
import { INumeric } from "./_numeric";
export declare class Numc implements ICharacter {
private value;
private readonly length;
private readonly qualifiedName;
constructor(input?: {
length?: number;
qualifiedName?: string;
});
clone(): Numc;
getQualifiedName(): string | undefined;
set(value: INumeric | ICharacter | Hex | string | number, raw?: boolean): this;
getLength(): number;
clear(): void;
get(): string;
getOffset(input: {
offset?: number | INumeric | Hex;
length?: number | INumeric | Hex;
}): Numc;
}