No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

11 líneas
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;