10 lines
No EOL
434 B
TypeScript
10 lines
No EOL
434 B
TypeScript
import { ITestData as base } from 'safelite-playwright-core'
|
|
import { PaymentMethod } from './localTypes/Enums'
|
|
|
|
export interface ITestData extends base {
|
|
// Put any project-specific data here. Anything useful to other Safelite projects should be submitted as a pull request to safelite-playwright-core.
|
|
paymentMethod: PaymentMethod,
|
|
isOptedInForTextMessages: boolean,
|
|
totalAmount?: number,
|
|
isForcedOEM?: boolean
|
|
} |