UNPKG

@abaplint/runtime

Version:
19 lines (18 loc) 604 B
import { Float } from "./float"; import { Hex } from "./hex"; import { ICharacter } from "./_character"; import { INumeric } from "./_numeric"; import { Integer } from "./integer"; import { DecFloat34 } from "./decfloat34"; export declare class Integer8 { private value; private readonly qualifiedName; constructor(input?: { qualifiedName?: string; }); clone(): Integer8; getQualifiedName(): string | undefined; set(value: INumeric | ICharacter | Hex | string | number | bigint | Integer8 | Integer | Float | DecFloat34): this; clear(): void; get(): bigint; }