UNPKG

hypertune

Version:

[Hypertune](https://www.hypertune.com/) is the most flexible platform for feature flags, A/B testing, analytics and app configuration. Built with full end-to-end type-safety, Git-style version control and local, synchronous, in-memory flag evaluation. Opt

30 lines 721 B
import Node from "./Node"; export declare class VoidNode extends Node { typeName: "Void"; get(options?: {}): void; } export declare class BooleanNode extends Node { typeName: "Boolean"; get({ fallback }: { fallback: boolean; }): boolean; } export declare class IntNode extends Node { typeName: "Int"; get({ fallback }: { fallback: number; }): number; } export declare class FloatNode extends Node { typeName: "Float"; get({ fallback }: { fallback: number; }): number; } export declare class StringNode extends Node { typeName: "String"; get({ fallback }: { fallback: string; }): string; } //# sourceMappingURL=primitiveNodes.d.ts.map