@skrillex1224/playwright-toolkit 2.1.71 → 2.1.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -434,10 +434,10 @@ export interface MutationModule {
|
|
|
434
434
|
// TokenForm
|
|
435
435
|
// =============================================================================
|
|
436
436
|
export interface TokenFormField {
|
|
437
|
-
key
|
|
438
|
-
label
|
|
439
|
-
type: 'text' | 'textarea' | 'autocomplete' | 'password';
|
|
440
|
-
required
|
|
437
|
+
key?: string;
|
|
438
|
+
label?: string;
|
|
439
|
+
type: 'text' | 'textarea' | 'autocomplete' | 'password' | 'divider';
|
|
440
|
+
required?: boolean;
|
|
441
441
|
placeholder?: string;
|
|
442
442
|
options?: string[];
|
|
443
443
|
col?: number;
|