From 3c93007e6b7f1c651c4f80cc144a9f90840c8701 Mon Sep 17 00:00:00 2001 From: Daniel O'Grady Date: Fri, 8 Dec 2023 15:09:09 +0100 Subject: [PATCH] Remove leftover dev-comments --- apis/services.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apis/services.d.ts b/apis/services.d.ts index 2a889e03..bf01ec50 100644 --- a/apis/services.d.ts +++ b/apis/services.d.ts @@ -63,7 +63,7 @@ export class QueryAPI { /** * @see [docs](https://cap.cloud.sap/docs/node.js/core-services#srv-stream-column) */ - stream: { // tl + stream: { (column: string): { from(entity: LinkedDefinition | string): { where(filter: any): ReadableStream @@ -75,14 +75,14 @@ export class QueryAPI { /** * @see [docs](https://cap.cloud.sap/docs/node.js/core-services#crud-style-api) */ - delete(entity: LinkedDefinition | string, key?: any): DELETE // tl + delete(entity: LinkedDefinition | string, key?: any): DELETE /** * @see [docs](https://cap.cloud.sap/docs/node.js/core-services#srv-foreach-entity) */ - foreach(query: Query, callback: (row: object) => void): this // tl + foreach(query: Query, callback: (row: object) => void): this - transaction: { // tl + transaction: { (fn: (tx: Transaction) => {}): Promise (context?: object): Transaction (context: object, fn: (tx: Transaction) => {}): Promise