react-native-calendars
Version:
React Native Calendar Components
17 lines (16 loc) • 498 B
TypeScript
/// <reference types="react" />
import { render } from '@testing-library/react-native';
export declare class CalendarHeaderDriver {
testID: string;
element: React.ReactElement;
renderTree: ReturnType<typeof render>;
constructor(element: any, testID: any);
isTextExists(text: any): boolean;
getTitle(): any;
getDayNames(): string[];
getLoadingIndicator(): any;
getLeftArrow(): any;
getRightArrow(): any;
tapLeftArrow(): void;
tapRightArrow(): void;
}