feat: add return type to pssql funcs

This commit is contained in:
Nybkox
2024-12-05 15:31:50 +01:00
parent 7f639361b8
commit ae19d14951
2 changed files with 4 additions and 1 deletions

View File

@@ -132,7 +132,9 @@ export interface CallableObjectInfo extends SqlObjectInfo {
export interface ProcedureInfo extends CallableObjectInfo {}
export interface FunctionInfo extends CallableObjectInfo {}
export interface FunctionInfo extends CallableObjectInfo {
returnType?: string;
}
export interface TriggerInfo extends SqlObjectInfo {}