UNPKG
@compute.ts/string
Version:
latest (2.0.3)
2.0.3
2.0.2
2.0.1
2.0.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
Provide string operators for the computeTS package
@compute.ts/string
/
lib
/
ComputeStringVariable.d.ts
7 lines
(6 loc)
•
289 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
ComputeApiVariable
}
from
'@compute.ts/core'
;
import
{
ComputeStringNode
}
from
'./ComputeStringNode'
;
export
declare
class
ComputeStringVariable
extends
ComputeStringNode
implements
ComputeApiVariable
<
string
> {
constructor
(
value
?:
string
);
affect
(
value
:
string
):
void
; }