type EqualCondition = ["eq", string, string] | Record<string, string>;
type StartsWithCondition = ["starts-with", string, string];
type ContentLengthRangeCondition = ["content-length-range", number, number];
export type Conditions =
  | EqualCondition
  | StartsWithCondition
  | ContentLengthRangeCondition;
export {};
