defaultTransOpts: {
    current: (() => any);
    custom: {};
    inherit: boolean;
    location: boolean;
    notify: boolean;
    relative: any;
    reload: boolean;
    source: string;
    supercede: boolean;
} = ...

The default [[Transition]] options.

Include this object when applying custom defaults: let reloadOpts = { reload: true, notify: true } let options = defaults(theirOpts, customDefaults, defaultOptions);