You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 line
526 B

  1. interface AttributeMap {
  2. [key: string]: any;
  3. }
  4. declare namespace AttributeMap {
  5. function compose(a: AttributeMap | undefined, b: AttributeMap | undefined, 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;