Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Interface ILocatorParseResult

    The result of parsing a locator, either there is an error or there is a locator.

    interface ILocatorParseResult {
        error: LocatorError;
        locator: ILocator;
    }

    Properties

    Will be set if there was an error parsing the locator.

    locator: ILocator

    The successfully parsed locator or null if the parse failed.