mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-08-15 04:49:10 +02:00
* Hopefully final fix for TJSResponse constructor
This commit is contained in:
parent
6de7df37e0
commit
777b6dd3ad
@ -237,10 +237,13 @@ type
|
|||||||
furl: String; external name 'url';
|
furl: String; external name 'url';
|
||||||
fuseFinalUrl: Boolean; external name 'useFinalUrl';
|
fuseFinalUrl: Boolean; external name 'useFinalUrl';
|
||||||
public
|
public
|
||||||
constructor new(body: TJSObject); overload; varargs; external name 'new';
|
constructor new(body: TJSObject); overload; external name 'new';
|
||||||
constructor new(body: TJSObject; init: TJSObject); overload; varargs; external name 'new'; deprecated;
|
constructor new(body: TJSObject; init: TJSObject); overload; external name 'new'; deprecated;
|
||||||
constructor new(Msg: string); overload; varargs; external name 'new';
|
constructor new(body: TJSObject; init: TJSResponseInit); overload; external name 'new';
|
||||||
constructor new(Msg: string; init: TJSObject); overload; varargs; external name 'new'; deprecated;
|
constructor new(Msg: string); overload; external name 'new';
|
||||||
|
constructor new(Msg: string; init: TJSObject); overload; external name 'new'; deprecated;
|
||||||
|
constructor new(Msg: string; init: TJSResponseInit); overload; external name 'new';
|
||||||
|
|
||||||
function clone(): TJSResponse;
|
function clone(): TJSResponse;
|
||||||
function error(): TJSResponse;
|
function error(): TJSResponse;
|
||||||
function redirect(url: String; Status: NativeInt): TJSResponse;
|
function redirect(url: String; Status: NativeInt): TJSResponse;
|
||||||
|
Loading…
Reference in New Issue
Block a user