react-web-native-sketch
Version:
[TODO: We need an overview of how this can be used via npm vs as a local package]
15 lines (14 loc) • 330 B
TypeScript
export interface Testable {
testId?: string;
}
export declare const getTestProps: (testId: string | undefined) => {
accessible?: undefined;
id?: undefined;
testId?: undefined;
accessibilityLabel?: undefined;
} | {
accessible: boolean;
id: string;
testId: string;
accessibilityLabel: string;
};