Skip to content

Commit

Permalink
Docblock for r_string methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
Neloreck committed Dec 9, 2023
1 parent 958eee0 commit 8ad0018
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions types/xr_lib/xr_ini.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,18 @@ declare module "xray16" {

public r_string_wq(section: string, field: string): string;

/**
* @param section - ini file section
* @param field - ini section field
* @returns if quoted, parsed string data inside quotes including spaces, else is same data as with r_string
*/
public r_string_wb(section: string, field: string): string;

/**
* @param section - ini file section
* @param field - ini section field
* @returns raw string from ltx file without spaces in it
*/
public r_string(section: string, field: string): string;

/**
Expand Down

0 comments on commit 8ad0018

Please sign in to comment.