/** * This is a success type with no payload * @internal */ export declare const RESULT_SUCCESS = "Success"; /** * This is a success type with a map payload * @internal */ export declare const RESULT_SUCCESS_HAS_MAP_PAYLOAD = "SuccessMap"; /** * This is a success type with an arbitrary object payload * @internal */ export declare const RESULT_SUCCESS_HAS_ANY_PAYLOAD = "SuccessAny"; /** * This is a failure * @internal */ export declare const RESULT_FAILURE = "Failure"; /** * Use these constants to determine what type of result a BoundaryResult is. * @public */ export declare class BoundaryResultTypeConstants { /** This is a success type with no payload */ static readonly RESULT_SUCCESS = "Success"; /** This is a success type with a map payload */ static readonly RESULT_SUCCESS_HAS_MAP_PAYLOAD = "SuccessMap"; /** This is a success type with an arbitrary object payload */ static readonly RESULT_SUCCESS_HAS_ANY_PAYLOAD = "SuccessAny"; /** This is a failure */ static readonly RESULT_FAILURE = "Failure"; } //# sourceMappingURL=BoundaryResultTypeConstants.d.ts.map