interface Country {
    code?: string;
    id: number;
    name?: string;
    resource?: CountryResource;
    [key: string]: unknown;
}

Hierarchy

  • Record<string, unknown>
    • Country

Indexable

  • [key: string]: unknown

Properties

Properties

code?: string
id: number
name?: string
resource?: CountryResource