Show node on map in confirmation before deleting it.
This commit is contained in:
parent
0e30ec1f96
commit
fd853c7319
|
@ -461,6 +461,10 @@ export const isHostname = toIsNewtype(isString, "" as Hostname);
|
|||
export type Nickname = string & { readonly __tag: unique symbol };
|
||||
export const isNickname = toIsNewtype(isString, "" as Nickname);
|
||||
|
||||
/**
|
||||
* String representing geo coordinates. Latitude and longitude are delimited by one whitespace.
|
||||
* E.g.: <code>"53.565278 10.001389"</code>
|
||||
*/
|
||||
export type Coordinates = string & { readonly __tag: unique symbol };
|
||||
export const isCoordinates = toIsNewtype(isString, "" as Coordinates);
|
||||
|
||||
|
|
Loading…
Reference in a new issue