geostyler-style
    Preparing search index...

    Interface WriteStyleResult<T>

    The Result of the writeStyle function of a StyleParser.

    interface WriteStyleResult<T = any> {
        errors?: Error[];
        output?: T;
        unsupportedProperties?: UnsupportedProperties;
        warnings?: string[];
    }

    Type Parameters

    • T = any
    Index

    Properties

    errors?: Error[]

    A list of errors occured while writing the style.

    output?: T

    The target-style as written by the parser.

    unsupportedProperties?: UnsupportedProperties

    A list of unsupportedProperties used while writing the style.

    warnings?: string[]

    A list of warnings occured while writing the style.