UNPKG

jest-mock-external-components

Version:

Mock external React components with jest

7 lines (6 loc) 220 B
export interface Mock { identifier: string; path: string; type: "namespace" | "name" | "default"; } export declare function getMocks(code: string, type: "flow" | "typescript", alwaysMock?: string[]): Mock[];