shineout
Version:
A components library for React
15 lines (14 loc) • 599 B
TypeScript
/// <reference types="react" />
export declare function classLengthTest(container: Element | Document, name: string, nums: number): void;
interface attributeProps {
attribute: string;
num: number;
}
export declare function structureTestInContainer(container: Element, attributes: attributeProps[]): void;
export default function structureTest(Component: JSX.Element, attributes: attributeProps[]): void;
interface inputAttributeProps {
attribute: string;
value: string;
}
export declare function inputTest(Component: JSX.Element, attributes: inputAttributeProps[]): void;
export {};