UNPKG

@abaplint/runtime

Version:
14 lines (13 loc) 394 B
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;