UNPKG

mockzilla

Version:

A mocking toolkit leveraging the power of TypeScript to enhance your jest experience.

4 lines (3 loc) 240 B
export declare function denyPropertyAccess<T>(instance: T, property: string): void; export declare function getAllProperties(obj: any): string[]; export declare function whitelistPropertyAccess(instance: any, ...whitelist: string[]): void;