Traqula
    Preparing search index...

    Interface TransformContext

    interface TransformContext {
        continue?: boolean;
        copy?: boolean;
        ignoreKeys?: Set<string>;
        shallowKeys?: Set<string>;
        shortcut?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    continue?: boolean

    Whether you should continue iterating deeper with this object. Default true.

    copy?: boolean

    Whether the visited object should be shallowly copied or not. Defaults to true.

    ignoreKeys?: Set<string>

    Object keys that can be ignored, meaning they do not get visited.

    shallowKeys?: Set<string>

    Object keys that will be shallowly copied but not traversed. When the same key is included here and in ignoreKeys, the copy will still be made.

    shortcut?: boolean

    Whether you should stop iterating after this object. Default false.