import { CoordType } from '../data-type';
/**
 * @interface ICreateCADGeoRef
 * @param {Array<CoordType>} cadPoints
 * @param {Array<CoordType>} worldPoints
 */
export interface ICreateCADGeoRef {
    cadPoints: Array<CoordType>;
    worldPoints: Array<CoordType>;
}
