catarse/catarse.js

View on GitHub
legacy/src/@types/city-state.d.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { City } from "./city";
import { State } from "./state";

export type CityState = {
    city?: City
    state: {
        acronym: string;
        state_name: string;
    }
}