export default class OrderStatus { /** * Order has been submitted but not yet confirmed. */ static get DRAFT(): string; /** * Order has been confirmed and is being prepared for shipment. */ static get ACCEPTED(): string; /** * Order has been completed and the product(s) is ready to be shipped. */ static get FULFILLED(): string; /** * Order has been cancelled by customer or admin. */ static get CANCELED(): string; /** * Order has been refunded to the customer. */ static get REFUNDED(): string; /** * Order has been partially refunded to the customer. */ static get PARTIAL_REFUND(): string; /** * Order has been placed by the customer and is waiting for payment to be completed. */ static get PENDING(): string; /** * Something went wrong during the processing of the order. */ static get ERROR(): string; /** * Order was prepared to be sent to production. */ static get GENERATED(): string; /** * Order was sent to production. */ static get IN_PROGRESS(): string; /** * Returns all the possible order statuses. */ static get all(): string[]; }