UNPKG

456 BTypeScriptView Raw
1/**
2 * match testing file based on their name file
3 */
4export declare const TEST_FILE_PATTERN: RegExp;
5/**
6 * Match right hand side of `export default` or `module.exports` = statements
7 */
8export declare const TS_QUERY_JEST_CONFIG_PREFIX = ":matches(ExportAssignment, BinaryExpression:has(Identifier[name=\"module\"]):has(Identifier[name=\"exports\"]))";
9export declare function addTransformerToConfig(configContents: string, transformer: string): string;