Skip to content

crelte / static / StaticRouteHandler

Type Alias: StaticRouteHandler()

ts
type StaticRouteHandler = (csr) => 
  | Promise<Entry | null | undefined>
  | Entry
  | null
  | undefined
  | void;

Parameters

csr

CrelteStaticRequest

Returns

| Promise<Entry | null | undefined> | Entry | null | undefined | void