esi-cap
Version:
Enterprise System Integration Based on SAP CAP
25 lines (24 loc) • 635 B
TypeScript
import { date } from "./lib/utils";
import { xml } from "./lib/utils";
import { json } from "./lib/utils";
import { array } from "./lib/utils";
import { UUID } from "./lib/utils";
import { log } from "./lib/log";
import { query } from "./lib/query";
import { service } from "./lib/service";
import { impl } from "./lib/impl";
import { connect } from "./lib/connect";
export namespace utils {
export { date };
export { xml };
export { json };
export { array };
export { UUID };
}
export namespace esi {
export { log };
export { query };
export { service };
export { impl };
export { connect };
}