import { Coord2DType } from '../data-type';
export interface IMiniMap {
    eid?: string | null;
    type?: string;
    source?: {
        bg?: string;
        needle?: string;
        mask?: string;
        frame?: string;
    };
    mappingAnchors?: Array<Array<number>>;
    display?: {
        position?: Coord2DType;
        size?: number;
    };
}
