Is there a way of using `Transition` model to define a type in Typescript code? Would be nice if something like this was possible: ```ts import {Transition} from 'ui-router-react' // ... // resolve object in state definition { token: 'someToken', resolveFn: async (transition: Transition) => { // ... }, deps: ['$transition$'] } ```