Skip to content

Commit 1bde721

Browse files
committed
run package msbuyild
1 parent e091faa commit 1bde721

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

@export/index.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,9 @@ declare namespace WorkflowRender {
9898
}
9999
/**
100100
* @param default default value Is ``null``.
101+
* @param warn_msg default value Is ``null``.
101102
*/
102-
function get_config(name: any, default?: any): object;
103+
function get_config(name: any, default?: any, warn_msg?: any): object;
103104
/**
104105
*/
105106
function get_functionName(f: any): object;

man/get_config.1

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
.TH GET_CONFIG 1 2024-Dec "" "get user parameter value inside current workflow context environment"
22
.SH NAME
33
get_config \- get_config(name,
4-
<i>default</i> = <span style='color: blue !important;'>NULL</span>)
4+
<i>default</i> = <span style='color: blue !important;'>NULL</span>,
5+
<i>warn.msg</i> = <span style='color: blue !important;'>NULL</span>)
56
.SH SYNOPSIS
67
\fIget_config(name,
7-
<i>default</i> = <span style='color: blue !important;'>NULL</span>)\fR
8+
<i>default</i> = <span style='color: blue !important;'>NULL</span>,
9+
<i>warn.msg</i> = <span style='color: blue !important;'>NULL</span>)\fR
810
.SH OPTIONS
911
.PP
1012
\fBname\fB \fR\- . a character vector of the parameter name
1113
.PP
1214
.PP
1315
\fBdefault\fB \fR\- NULL. the default value for the parameter if missing from the workflow context environment.
1416
.PP
17+
.PP
18+
\fBwarn.msg\fB \fR\- NULL.
19+
.PP
1520
.SH VALUE
1621
.PP
1722
the parameter value, maybe is object value in character type, a type cast function expression invoke example as: ``as.logical``, ``as.double``, etc maybe required.

man/index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

man/pull_configs.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pull_configs \- pull_configs()
55
\fIpull_configs()\fR
66
.SH FILES
77
.PP
8-
SMRUCC/R#.declare_function.pull_configs at set_config.R:line 68
8+
SMRUCC/R#.declare_function.pull_configs at set_config.R:line 77
99
.PP
1010
.SH COPYRIGHT
1111
Copyright © xieguigang, MIT Licensed 2024

vignettes/R/docs/get_config.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ <h3>Usage</h3>
2828

2929
<div style="width: 100%; padding-left: 3%; color: black;">
3030
<pre><code class='language-R' style="color: black; font-weight:normal;"><strong>get_config</strong>(<i>name</i>,
31-
<i>default</i> = <span style='color: blue !important;'>NULL</span>);</code></pre>
31+
<i>default</i> = <span style='color: blue !important;'>NULL</span>,
32+
<i>warn.msg</i> = <span style='color: blue !important;'>NULL</span>);</code></pre>
3233
</div>
3334

3435
<h3>Arguments</h3>

0 commit comments

Comments
 (0)