/** * LocalityInterface * * LocalityInterface represents the locality interface. */ export interface LocalityInterface { /** * name() * * name() gets the name of the locality. */ name(): string; }