geostyler-style
    Preparing search index...

    Interface ReadStyleResult

    The Result of the readStyle function of a StyleParser.

    interface ReadStyleResult {
        errors?: Error[];
        output?: Style;
        unsupportedProperties?: UnsupportedProperties;
        warnings?: string[];
    }
    Index

    Properties

    errors?: Error[]

    A list of errors occured while reading the style.

    output?: Style

    The geostyler-style as read by the parser.

    unsupportedProperties?: UnsupportedProperties

    A list of unsupportedProperties used while reading the style.

    warnings?: string[]

    A list of warnings occured while reading the stlye.