[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 type Overlay = 'embed' | 'description' | false;
export class ManageStakeholders { export class ManageStakeholders {
templates: Stakeholder[]; templates: (Stakeholder & StakeholderInfo)[];
standalone: Stakeholder[]; standalone: (Stakeholder & StakeholderInfo)[];
dependent: Stakeholder[]; dependent: (Stakeholder & StakeholderInfo)[];
umbrella: Stakeholder[]; umbrella: (Stakeholder & StakeholderInfo)[];
} }
export class Stakeholder { export class Stakeholder {