Looking for a solution to create the childTitle property in fooDetail interface by combining two properties from fooParent interface.
export interface fooParent {
appId: string,
appName: string
}
export interface fooDetail {
childTitle: fooParent.appId + '-' + fooParent.appName
}
Any ideas on how to implement this?
childTitle: fooParent.appId + '-' + fooParent.appName