type specified for node object

This commit is contained in:
Jatin_Chugh
2023-06-07 10:45:59 +05:30
parent 5e07676df7
commit 4709440a73
@@ -308,7 +308,7 @@ export class ShareDialogComponent implements OnInit, OnDestroy {
const lastIndex = expiryDate?.lastIndexOf(':');
expiryDate = expiryDate?.substring(0, lastIndex) + expiryDate?.substring(lastIndex + 1, expiryDate?.length);
}
const nodeObject = {
const nodeObject: SharedLinkBodyCreate = {
nodeId: this.data.node.entry.id,
expiresAt: expiryDate as Date
};