prg-class
Version:
Clases genéricas utilizadas por microservicios Programamos SPA.
13 lines (12 loc) • 507 B
TypeScript
import { IParamRet, IParamSP } from '../igeneric';
import { ExecSP } from './001-exec-sp';
export declare class QuerySPOne extends ExecSP {
protected msCustomErrMsg: string;
protected mbCustomRet: boolean;
protected mbNonZeroPositiveIsOk: boolean;
constructor();
fnQueryOne(aoParams: any): Promise<IParamRet>;
protected customReturn(aoData: any): Promise<IParamRet>;
protected normalReturn(aoData: any): Promise<IParamRet>;
protected getSPParams(aoParam: any): IParamSP[];
}