UNPKG

@compute.ts/string

Version:

Provide string operators for the computeTS package

7 lines (6 loc) 289 B
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; }