You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
1013 B
16 lines
1013 B
import type { ReactTestInstance } from 'react-test-renderer';
|
|
import { TextMatch, TextMatchOptions } from '../matches';
|
|
import type { FindAllByQuery, FindByQuery, GetAllByQuery, GetByQuery, QueryAllByQuery, QueryByQuery } from './makeQueries';
|
|
import type { CommonQueryOptions } from './options';
|
|
type ByPlaceholderTextOptions = CommonQueryOptions & TextMatchOptions;
|
|
export type ByPlaceholderTextQueries = {
|
|
getByPlaceholderText: GetByQuery<TextMatch, ByPlaceholderTextOptions>;
|
|
getAllByPlaceholderText: GetAllByQuery<TextMatch, ByPlaceholderTextOptions>;
|
|
queryByPlaceholderText: QueryByQuery<TextMatch, ByPlaceholderTextOptions>;
|
|
queryAllByPlaceholderText: QueryAllByQuery<TextMatch, ByPlaceholderTextOptions>;
|
|
findByPlaceholderText: FindByQuery<TextMatch, ByPlaceholderTextOptions>;
|
|
findAllByPlaceholderText: FindAllByQuery<TextMatch, ByPlaceholderTextOptions>;
|
|
};
|
|
export declare const bindByPlaceholderTextQueries: (instance: ReactTestInstance) => ByPlaceholderTextQueries;
|
|
export {};
|