Skip to content

Commit

Permalink
Remove leftover dev-comments
Browse files Browse the repository at this point in the history
  • Loading branch information
daogrady committed Dec 8, 2023
1 parent 11f42c7 commit 3c93007
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apis/services.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -75,14 +75,14 @@ export class QueryAPI {
/**
* @see [docs](https://cap.cloud.sap/docs/node.js/core-services#crud-style-api)
*/
delete<T>(entity: LinkedDefinition | string, key?: any): DELETE<T> // tl
delete<T>(entity: LinkedDefinition | string, key?: any): DELETE<T>

/**
* @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<unknown>
(context?: object): Transaction
(context: object, fn: (tx: Transaction) => {}): Promise<unknown>
Expand Down

0 comments on commit 3c93007

Please sign in to comment.