@abaplint/runtime
Version:
Transpiler - Runtime
14 lines (13 loc) • 394 B
TypeScript
import { Table } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export interface IDescribeOptions {
field: any;
type?: ICharacter;
length?: INumeric;
decimals?: INumeric;
lines?: INumeric;
table?: Table;
mode?: "BYTE" | "CHARACTER";
}
export declare function describe(input: IDescribeOptions): void;