@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
11 lines • 326 B
TypeScript
export interface StoredProcedureDefinition {
/**
* The id of the {@link StoredProcedure}.
*/
id?: string;
/**
* The body of the {@link StoredProcedure}. This is a JavaScript function.
*/
body?: string | ((...inputs: any[]) => void);
}
//# sourceMappingURL=StoredProcedureDefinition.d.ts.map