Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

11 linhas
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;