mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 00:18:19 +01:00
28 lines
678 B
TypeScript
28 lines
678 B
TypeScript
/**
|
|
* @file index.ts
|
|
* @fileoverview Main entrypoint and export for the module
|
|
* @module federation
|
|
* @see module:federation/schemas/base
|
|
*/
|
|
|
|
import type { ValidationError } from "zod-validation-error";
|
|
import { SignatureConstructor, SignatureValidator } from "./cryptography";
|
|
import { RequestParserHandler } from "./http";
|
|
import {
|
|
FederationRequester,
|
|
type Output,
|
|
ResponseError,
|
|
} from "./requester/index";
|
|
import { EntityValidator } from "./validator/index";
|
|
|
|
export {
|
|
EntityValidator,
|
|
type ValidationError,
|
|
SignatureConstructor,
|
|
SignatureValidator,
|
|
RequestParserHandler,
|
|
type Output,
|
|
ResponseError,
|
|
FederationRequester,
|
|
};
|