SQLQueryHelperjs - v1.2.6
    Preparing search index...

    Interface PostgresStoreProcedureDefinition

    interface PostgresStoreProcedureDefinition {
        name: string;
        routineType?: PostgresRoutineType;
        arguments?: string[];
        returns?: string;
        language?: string;
        body: string;
        replace?: boolean;
    }
    Index

    Properties

    name: string
    routineType?: PostgresRoutineType
    arguments?: string[]
    returns?: string
    language?: string
    body: string
    replace?: boolean