Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 309 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 309 Bytes

common-types

Cali finance interface repository

#1 Rule:

Never modify an interface. Instead, extend and create a new one.

interface BaseUser {
    name: string,
    id: number
}

interface UserWithCompany extends BaseUser {
    company: {
        name: string,
        id: number
    }
}