decova-dotnet
Version:
This package provides fundumentals that a .net developer may miss while working with Typescript, whether they are missing functinalities or funcionalities provided in a non-elegant design in javascript. Bad naming, bad design of optional parameters, non-c
11 lines • 426 B
TypeScript
import { Constructor } from "..";
export declare class TypeInfo {
readonly Type: Function;
private constructor();
static of(type: Function | TypeInfo): TypeInfo;
isAssignableFrom(type: Function | TypeInfo): boolean;
static GetDecoratedConstructor(constructor: Constructor): Constructor;
static ofObject(obj: any): TypeInfo;
get typeName(): string;
}
//# sourceMappingURL=TypeInfo.d.ts.map