/** * StreetInterface * * StreetInterface outlines the requirements for a street */ export interface StreetInterface { /** * line1() * * line1() gets the line1 of a street. */ line1(): string; /** * line2() * * line2() gets the line2 of a street. */ line2(): string; }