@studyportals/domain-client 3.37.0 → 3.37.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IEnglishRequirements, IGeoTargetingValues, IInternalLink, ITiming, ITuitionValues } from "../../..";
|
|
1
|
+
import { IEnglishRequirements, IGeoTargetingValues, IInternalLink, ITiming, ITuitionValues, ILink } from "../../..";
|
|
2
2
|
export interface ICopilotProgramme {
|
|
3
3
|
/**
|
|
4
4
|
* Get country the programme is teached in
|
|
@@ -47,6 +47,15 @@ export interface ICopilotProgramme {
|
|
|
47
47
|
* @return IInternalLink
|
|
48
48
|
*/
|
|
49
49
|
getProgrammeLink(): IInternalLink;
|
|
50
|
+
/**
|
|
51
|
+
* Get a link to the programme's university page.
|
|
52
|
+
*
|
|
53
|
+
* The link contains the page path as url and the university name as the
|
|
54
|
+
* link description.
|
|
55
|
+
*
|
|
56
|
+
* @return ILink
|
|
57
|
+
*/
|
|
58
|
+
getUniversityLink(): ILink;
|
|
50
59
|
/**
|
|
51
60
|
* Summary of the programme.
|
|
52
61
|
*
|