Interface ObjectResult

    An object type. Contains entries which can be KeyValueResults or NameResults. In most grammars the keys need to be NameResults. In some grammars it possible that an entry is only a RootResult or a NumberResult without a key. The separator is 'comma' by default.

    interface ObjectResult {
        elements: (ObjectFieldResult | JsdocObjectFieldResult)[];
        meta: {
            separator: "comma" | "semicolon" | "linebreak";
        };
        type: "JsdocTypeObject";
    }

    Properties

    Properties

    meta: {
        separator: "comma" | "semicolon" | "linebreak";
    }
    type