10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
/********************************************
|
|
* This file contains structures which are *
|
|
* internal to the server and don't need to *
|
|
* be exposed for use by other services. *
|
|
********************************************/
|
|
|
|
export interface QueryOptions {
|
|
disableReturning?: boolean
|
|
}
|