mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import { GraphInspector } from './graph-inspector';
|
|
|
|
const noop = () => {};
|
|
export const NoopGraphInspector: GraphInspector = new Proxy(
|
|
GraphInspector.prototype,
|
|
{
|
|
get: () => noop,
|
|
},
|
|
);
|