Archived
Template
1
Fork 0
This repository has been archived on 2024-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
Contour/public/@shoelace-style/shoelace/cdn/internal/test/form-control-base-tests.d.ts

8 lines
347 B
TypeScript
Raw Normal View History

2024-01-30 10:59:28 -05:00
import type { ShoelaceFormControl } from '../shoelace-element.js';
/** Runs a set of generic tests for Shoelace form controls */
export declare function runFormControlBaseTests<T extends ShoelaceFormControl = ShoelaceFormControl>(tagNameOrConfig: string | {
tagName: string;
init?: (control: T) => void;
variantName: string;
}): void;