@odata2ts/odata2ts
Version:
Flexible generator to produce various TypeScript artefacts (from simple model interfaces to complete odata clients) from OData metadata files
11 lines (10 loc) • 431 B
TypeScript
import { RunOptions } from "./OptionModel.js";
export type DefaultConfiguration = Omit<RunOptions, "sourceUrl" | "source" | "output" | "serviceName">;
/**
* Creates a defensive copy of the default config.
*/
export declare function getDefaultConfig(): DefaultConfiguration;
/**
* Creates a defensive copy of the minimal config: minimal in respect to naming.
*/
export declare function getMinimalConfig(): DefaultConfiguration;