rox-ssr
Version:
CloudBees Feature Management JavaScript SDK for Server-Side Rendering
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 {};