mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-10 20:22:38 +00:00
11 lines
626 B
TypeScript
11 lines
626 B
TypeScript
export { createClientFor, toDate } from "./helpers";
|
|
export { NewAuthorizationBearerInterceptor } from "./interceptors";
|
|
|
|
// TODO: Move this to `./protobuf.ts` and export it from there
|
|
export { create, fromJson, toJson } from "@bufbuild/protobuf";
|
|
export type { JsonObject } from "@bufbuild/protobuf";
|
|
export type { GenService } from "@bufbuild/protobuf/codegenv1";
|
|
export { TimestampSchema, timestampDate, timestampFromDate, timestampFromMs, timestampMs } from "@bufbuild/protobuf/wkt";
|
|
export type { Duration, Timestamp } from "@bufbuild/protobuf/wkt";
|
|
export type { Client, Code, ConnectError } from "@connectrpc/connect";
|