type ObjectWithProperty<O extends object, K extends string | symbol, T> = O & {
    [property in K]: T;
};
export type { ObjectWithProperty };
