UNPKG

@epilogo/stringifyr

Version:
11 lines (10 loc) 416 B
import { StringifyrBase, TStringifyrBaseParams } from './StringifyrBase'; import { TString } from './Api'; export type TStringifyrParams = TStringifyrBaseParams; export type TLeafObject<T, X> = X | { [K: string]: TLeafObject<T, X>; }; export declare class Stringifyr extends StringifyrBase { static nodeValues(node: TLeafObject<string, TString>): any; value(template: string, variables?: object): any; }