Skip to content

Commit

Permalink
Export
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Ayers <sayers@buf.build>
  • Loading branch information
smaye81 committed Dec 18, 2024
1 parent 68b684a commit 1fe505e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions angular/src/connect/connect.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ import { createObservableClient, ObservableClient } from "./observable-client";

const TRANSPORT = new InjectionToken<Transport>("connect.transport");

const INTERCEPTORS = new InjectionToken<Interceptor[]>("connect.interceptors", {
factory: () => [],
});
export const INTERCEPTORS = new InjectionToken<Interceptor[]>(
"connect.interceptors",
{
factory: () => [],
},
);

export function createClientToken<T extends DescService>(
service: T,
Expand Down

0 comments on commit 1fe505e

Please sign in to comment.