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.

12 lines
357 B

import { NormalizerFn } from '../matches';
export type CommonQueryOptions = {
/** Should query include elements hidden from accessibility. */
includeHiddenElements?: boolean;
/** RTL-compatibile alias to `includeHiddenElements`. */
hidden?: boolean;
};
export type TextMatchOptions = {
exact?: boolean;
normalizer?: NormalizerFn;
};