export interface IAppendValueParams<U> {
    key: string;
    value: U;
    force?: boolean;
}
