import type BaseModel from './BaseModel'; import type Ifi from './Ifi'; interface Identifier extends BaseModel { readonly persona?: string; readonly ifi: Ifi; } export interface IdentifierWithPersona extends Identifier { readonly persona: string; } export default Identifier;