explode.d.ts 341 B

123456789
  1. /**
  2. * This serves thre functions:
  3. *
  4. * 1. Take any "aliases" and explode them to refecence the concrete types
  5. * 2. Normalize all handlers to have an `{enter, exit}` pair, rather than raw functions
  6. * 3. make the enter and exit handlers arrays, so that multiple handlers can be merged
  7. */
  8. export default function explode(input: any): any;