File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ interface ConfigureResult {
3434 proxy : ( proxyParams : ProxyParams ) => Promise < Object > ;
3535}
3636
37- declare function configure ( configureParams : ConfigureParams ) : ConfigureResult ;
37+ declare function configure ( configureParams : ConfigureParams ) : Handler & ConfigureResult ;
3838
3939// declare function proxy(proxyParams: ProxyParams): Promise<any>
4040
Original file line number Diff line number Diff line change 1+ export interface CurrentInvoke {
2+ event ?: any ;
3+ context ?: any ;
4+ }
5+
6+ export declare function getCurrentInvoke ( ) : CurrentInvoke ;
Original file line number Diff line number Diff line change 1- import Configure from "./configure"
1+ import configure from "./configure"
22
3- export = Configure
3+ export default configure ;
4+ export { default as configure } from "./configure"
5+ export { getCurrentInvoke } from "./current-invoke"
You can’t perform that action at this time.
0 commit comments