UNPKG

@onesy/utils

Version:
12 lines (11 loc) 360 B
export interface IOptions { getVariables?: boolean; cleanVariables?: boolean; placeholderPrefix?: string; } export declare type TVariablesToValue = Array<{ key: string; value: any; }>; declare const setStringVariables: (value: string, variablesToValue?: TVariablesToValue, options_?: IOptions) => string; export default setStringVariables;