UNPKG

@tsdi/pack

Version:

@tsdi/pack is simple build tasks, base on AOP, Ioc container, via @tsdi. dev build pack activities.

17 lines (16 loc) 542 B
import { ActivityContext, CtxExpression } from '@tsdi/activities'; import { IPlatformService } from './IPlatformService'; export declare type NodeExpression<T = any> = CtxExpression<T, NodeActivityContext>; /** * pipe activity context. * * @export * @class NodeActivityContext * @extends {ActivityContext} * @implements {IActivityContext<ITransform>} */ export declare class NodeActivityContext extends ActivityContext { readonly platform:IPlatformService; protected getPlatform(): IPlatformService; static ρAnn(): any; }