Type alias ReadStyleResult

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

The Result of the readStyle function of a StyleParser.

Type declaration

  • Optional errors?: Error[]

    A list of errors occured while reading the style.

  • Optional output?: Style

    The geostyler-style as read by the parser.

  • Optional unsupportedProperties?: UnsupportedProperties

    A list of unsupportedProperties used while reading the style.

  • Optional warnings?: string[]

    A list of warnings occured while reading the stlye.

Generated using TypeDoc