2021-10-14 03:46:09 +02:00
|
|
|
export default interface MoveConfigJson {
|
|
|
|
/**
|
|
|
|
* One default reason to move a point is to improve accuracy.
|
|
|
|
* Set to false to disable this reason
|
|
|
|
*/
|
|
|
|
enableImproveAccuracy?: true | boolean
|
|
|
|
/**
|
|
|
|
* One default reason to move a point is because it has relocated
|
|
|
|
* Set to false to disable this reason
|
|
|
|
*/
|
|
|
|
enableRelocation?: true | boolean
|
2022-09-08 21:40:48 +02:00
|
|
|
}
|