@abaplint/runtime
Version:
Transpiler - Runtime
15 lines (14 loc) • 464 B
TypeScript
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export interface IConvertSource {
date?: ICharacter | string;
time?: ICharacter | string;
stamp?: ICharacter | INumeric | string;
zone: ICharacter | string;
}
export interface IConvertTarget {
stamp?: ICharacter;
date?: ICharacter;
time?: ICharacter;
}
export declare function convert(source: IConvertSource, target: IConvertTarget): void;