UNPKG

intervention-pages

Version:
17 lines (16 loc) 677 B
import { ModelsBase } from '../../common/models/models.base'; import { InterventionPermissionsFields, Intervention } from '../../common/models/intervention.types'; export declare class TechnicalDetails extends ModelsBase { constructor(intervention: Intervention); technical_guidance: string; capacity_development: string; other_partners_involved: string; other_info: string; } export declare class TechnicalDetailsPermissions extends ModelsBase { constructor(permissions: InterventionPermissionsFields); technical_guidance: boolean; capacity_development: boolean; other_partners_involved: boolean; other_info: boolean; }