Interface PipeRef<T>

interface PipeRef<T> {
    asynchronous?: boolean;
    modelClass: Type<T>;
    name: string;
}

Type Parameters

  • T

Properties

asynchronous?: boolean
modelClass: Type<T>
name: string