Package version:

Interface StoredProcedureDefinition

interface StoredProcedureDefinition {
    body?: string | ((...inputs: any[]) => void);
    id?: string;
}

Properties

Properties

body?: string | ((...inputs: any[]) => void)

The body of the StoredProcedure. This is a JavaScript function.

id?: string

The id of the StoredProcedure.