Repository URL to install this package:
|
Version:
1.1.6 ▾
|
export interface LabelValue<Label = string, Value = any> {
label?: Label;
value?: Value;
}
export declare function isEqualLabelValue<One extends LabelValue = LabelValue, Two extends LabelValue = LabelValue>(one: One, two: Two): boolean;