/** * Copyright (c) Investec * * This source code is licensed under the MIT license found in the * LICENSE.md file in the root directory of this source tree. */ declare const StatusCodes: { readonly Cancelled: 2; readonly Failure: 1; readonly Success: 0; }; type StatusCode = (typeof StatusCodes)[keyof typeof StatusCodes]; export { type StatusCode, StatusCodes };