mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-02 06:29:40 +08:00
Change columns argument in event callback to be an array. (#27075)
This commit is contained in:
committed by
Mohamed Hegazy
parent
095474d038
commit
fc2591bc1e
2
types/tedious/index.d.ts
vendored
2
types/tedious/index.d.ts
vendored
@@ -396,7 +396,7 @@ export interface Request {
|
||||
/**
|
||||
* This event, describing result set columns, will be emitted before row events are emitted. This event may be emited multiple times when more than one recordset is produced by the statement.
|
||||
*/
|
||||
on(event: 'columnMetadata', listener: (columns: ColumnMetaData) => void ):this;
|
||||
on(event: 'columnMetadata', listener: (columns: ColumnMetaData[]) => void ):this;
|
||||
|
||||
/**
|
||||
* The request has been prepared and can be used in subsequent calls to execute and unprepare.
|
||||
|
||||
Reference in New Issue
Block a user