Skip to main content
Module

x/drash/src/interfaces/resource.ts

A microframework for Deno's HTTP server with zero third-party dependencies
Go to Latest
File
import type { Drash } from "../../mod.ts";
export interface Resource { middleware?: { after_request?: []; before_request?: [] }; name: string; paths: string[]; paths_parsed?: Drash.Interfaces.ResourcePaths[];}