[develop]: Fix manage stakehodlers class

This commit is contained in:
Konstantinos Triantafyllou 2024-06-12 12:47:47 +03:00
parent e1cc4f87aa
commit b8fb19d757
1 changed files with 4 additions and 4 deletions

View File

@ -17,10 +17,10 @@ export type Visibility = 'PUBLIC' | 'PRIVATE' | 'RESTRICTED';
export type Overlay = 'embed' | 'description' | false;
export class ManageStakeholders {
templates: Stakeholder[];
standalone: Stakeholder[];
dependent: Stakeholder[];
umbrella: Stakeholder[];
templates: (Stakeholder & StakeholderInfo)[];
standalone: (Stakeholder & StakeholderInfo)[];
dependent: (Stakeholder & StakeholderInfo)[];
umbrella: (Stakeholder & StakeholderInfo)[];
}
export class Stakeholder {