mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-07 19:54:15 +08:00
14 lines
220 B
TypeScript
14 lines
220 B
TypeScript
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { PayForOrder } from './pay-for-order';
|
|
|
|
export class ClassicPayForOrder extends PayForOrder {
|
|
url = './classic-checkout/order-pay/';
|
|
|
|
// Locators
|
|
|
|
// Actions
|
|
|
|
// Assertions
|
|
}
|