-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support for cds.Map #404
base: main
Are you sure you want to change the base?
Conversation
apis/linked/classes.d.ts
Outdated
@@ -105,6 +105,13 @@ declare class struct<K extends kinds = 'elements' | 'type'> extends type<K> impl | |||
elements: Definitions<type<'type'>> | |||
} | |||
|
|||
/** | |||
* @see [capire](https://cap.cloud.sap/docs/node.js/cds-reflect#cds-entity) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO
* @since 8.6.0 | ||
*/ | ||
declare interface Map extends csn.Map {} | ||
declare class Map {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In which cases is inheritance required?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Strictly to inherit properties from superclasses.
If we do not need any properties from the classes above (.type
?), then inheritance is not needed.
@johannes-vogel do you require my help in resolving the remaining work items? |
should be fine now |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, thanks a lot! :)
No description provided.