/** * PostalCodeInterface * * PostalCodeInterface specifies the functiions for a postal code. */ export interface PostalCodeInterface { /** * value() * * value() gets the value. */ value(): string; }