trader-server
Version:
OData server for testing strategies, simulating and real trading.
12 lines (11 loc) • 552 B
TypeScript
export declare const getFunctionParameters: (fn: Function, name?: string) => any;
export declare const getAllPropertyNames: (proto: any) => string[];
export declare function isIterator(value: any): boolean;
export declare function isPromise(value: any): boolean;
export declare function isStream(stream: any): boolean;
export interface PropertyDecorator<T> {
(target?: any, targetKey?: string): T;
}
export interface Decorator<T = any> {
(target?: any, targetKey?: string, parameterIndex?: number | TypedPropertyDescriptor<T>): T;
}