UNPKG

204 BTypeScriptView Raw
1import type { Constructor } from '../types.js';
2/**
3 * @name isClass
4 * Tests if the supplied agrument is a Class
5 */
6export declare const isClass: <T extends Constructor>(value?: unknown) => value is T;