xray16 1.0.16 → 1.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/types/xr_lib/xr_ini.d.ts
CHANGED
|
@@ -76,8 +76,18 @@ declare module "xray16" {
|
|
|
76
76
|
|
|
77
77
|
public r_string_wq(section: string, field: string): string;
|
|
78
78
|
|
|
79
|
+
/**
|
|
80
|
+
* @param section - ini file section
|
|
81
|
+
* @param field - ini section field
|
|
82
|
+
* @returns if quoted, parsed string data inside quotes including spaces, else is same data as with r_string
|
|
83
|
+
*/
|
|
79
84
|
public r_string_wb(section: string, field: string): string;
|
|
80
85
|
|
|
86
|
+
/**
|
|
87
|
+
* @param section - ini file section
|
|
88
|
+
* @param field - ini section field
|
|
89
|
+
* @returns raw string from ltx file without spaces in it
|
|
90
|
+
*/
|
|
81
91
|
public r_string(section: string, field: string): string;
|
|
82
92
|
|
|
83
93
|
/**
|