rox-ssr
Version:
Rollout.io ROX JS SDK Client for SSR
11 lines (10 loc) • 348 B
TypeScript
interface IRoxStringInterface {
new (defaultValue: string, variations?: ReadonlyArray<string>): IRoxStringInterface;
readonly name: string;
readonly defaultValue: string;
getValue(context?: any): string;
}
declare const internalRoxString: IRoxStringInterface;
export declare class RoxString extends internalRoxString {
}
export {};