pandora-hub
Version:
pandora.js messenge hub
17 lines (16 loc) • 446 B
TypeScript
import { Introspection } from '../domain';
export declare class IntrospectionUtils {
private static namesOfObject;
/**
* Introspect an Object, get the Definition of that Object
* @param obj
* @return {Introspection}
*/
static introspect(obj: any): Introspection;
/**
* decide a function is a generator function
* @param fn
* @return {boolean}
*/
static isGenerator(fn: any): boolean;
}