@abaplint/runtime
Version:
Transpiler - Runtime
17 lines (16 loc) • 456 B
TypeScript
import { Hex } from "./hex";
import { ICharacter } from "./_character";
import { INumeric } from "./_numeric";
export declare class Float {
private value;
private readonly qualifiedName;
constructor(input?: {
qualifiedName?: string;
});
clone(): Float;
getQualifiedName(): string | undefined;
set(value: INumeric | ICharacter | Hex | string | number): this;
clear(): void;
getRaw(): number;
get(): string;
}