@abaplint/runtime
Version:
Transpiler - Runtime
13 lines (12 loc) • 339 B
TypeScript
import { Hex } from "./hex";
import { ICharacter } from "./_character";
import { INumeric } from "./_numeric";
export declare class DecFloat34 {
private value;
constructor();
clone(): DecFloat34;
set(value: INumeric | ICharacter | Hex | string | number): this;
clear(): void;
getRaw(): number;
get(): string;
}