Odoo GraphQL Subscription using Node, Express JS for Sample
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
472 B

4 months ago
/**
* A replacement for instanceof which includes an error warning when multi-realm
* constructors are detected.
* See: https://expressjs.com/en/advanced/best-practice-performance.html#set-node_env-to-production
* See: https://webpack.js.org/guides/production/
*/
export declare const instanceOf: (
value: unknown,
constructor: Constructor,
) => boolean;
interface Constructor extends Function {
prototype: {
[Symbol.toStringTag]: string;
};
}
export {};