/** * Transformation * * @export * @interface ITransformation * @extends {Record} */ export interface ITransformation extends Record { wkid: number; latestWkid: number; name: string; transformForward?: boolean; } /** * Composite Transformation * * @export * @interface ICompositeTransformation */ export interface ICompositeTransformation { geoTransforms: ITransformation[]; } /** * Sorted list of transformations or composite transformations * * @export * @interface ITransformationResponse */ export interface ITransformationResponse { transformations: (ITransformation | ICompositeTransformation)[]; }