Skip to content

Commit a917fdc

Browse files
committed
change builder return type to string
1 parent 81949ad commit a917fdc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/fxp.d.cts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ declare class XMLValidator{
415415

416416
declare class XMLBuilder {
417417
constructor(options?: XmlBuilderOptions);
418-
build(jObj: any): any;
418+
build(jObj: any): string;
419419
}
420420

421421
declare namespace fxp {

src/fxp.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,5 +414,5 @@ export class XMLValidator{
414414
}
415415
export class XMLBuilder {
416416
constructor(options?: XmlBuilderOptions);
417-
build(jObj: any): any;
417+
build(jObj: any): string;
418418
}

0 commit comments

Comments
 (0)