intervention-pages
Version:
20 lines (19 loc) • 776 B
TypeScript
import { ModelsBase } from '../../common/models/models.base';
import { InterventionPermissionsFields, Intervention } from '../../common/models/intervention.types';
import { AnyObject } from '../../common/models/globals.types';
export declare class PdUnicefDetails extends ModelsBase {
constructor(intervention: Intervention);
document_type: string;
offices: AnyObject[];
sections: AnyObject[];
cluster_names: AnyObject[];
unicef_focal_points: AnyObject[];
unicef_budget_owner: AnyObject[];
}
export declare class PdUnicefDetailsPermissions extends ModelsBase {
constructor(permissions: InterventionPermissionsFields);
unicef_office: boolean;
sections: boolean;
focal_points: boolean;
budget_owner: boolean;
}