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.
10 lines
402 B
10 lines
402 B
/// <reference types="jest" />
|
|
import type { ImageStyle, StyleProp, TextStyle, ViewStyle } from 'react-native';
|
|
import type { ReactTestInstance } from 'react-test-renderer';
|
|
type Style = TextStyle | ViewStyle | ImageStyle;
|
|
export declare function toHaveStyle(this: jest.MatcherContext, element: ReactTestInstance, style: StyleProp<Style>): {
|
|
pass: boolean;
|
|
message: () => string;
|
|
};
|
|
export {};
|