UNPKG

@cashfarm/lang

Version:

Extends TypeScript/Javascript with basic classes and functions

10 lines (9 loc) 305 B
export declare function FQN(fqn: string): ClassDecorator; export declare type FqnDetails = { package: string; namespace: string; propertyPath?: string; className: string; }; export declare function parseFQN(fqn: string): FqnDetails; export declare function requireByFQN(fqn: string): any;