All checks were successful
Integration Tests / integration-tests (pull_request) Successful in 56s
9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
import { t } from "elysia";
|
|
import { AppRouteSchema } from "../../../helpers/types/AppRouteSchema";
|
|
|
|
export const getActiveHeroBannerSchema = {
|
|
headers: t.Object({
|
|
cookie: t.Optional(t.String()),
|
|
}),
|
|
} satisfies AppRouteSchema;
|