fcc652b42478a866e49ad826df738ff2003785b872bf7c8e08b04722f8d5cc1ad64b89a45564d6c72da17c2e0ca0d963e5bd0fddf18df08026fd48b2c19e71 509 B

12345678910
  1. interface AttributeMap {
  2. [key: string]: unknown;
  3. }
  4. declare namespace AttributeMap {
  5. function compose(a?: AttributeMap, b?: AttributeMap, keepNull?: boolean): AttributeMap | undefined;
  6. function diff(a?: AttributeMap, b?: AttributeMap): AttributeMap | undefined;
  7. function invert(attr?: AttributeMap, base?: AttributeMap): AttributeMap;
  8. function transform(a: AttributeMap | undefined, b: AttributeMap | undefined, priority?: boolean): AttributeMap | undefined;
  9. }
  10. export default AttributeMap;