Interface Filter<TContext>

interface Filter<TContext> {
    filterName: string;
    (context: TContext): void;
}

Type Parameters

Properties

Properties

filterName: string