Skip to main content
Module

x/fastro/server/mod.ts>Container

Fast and simple web application framework for deno
Go to Latest
interface Container
import { type Container } from "https://deno.land/x/fastro@v0.70.5/server/mod.ts";

Properties

objects: () => Map<string, Data>
set: <T>(
key: string,
value: T,
options?: SetOptions,
) => void
get: <T>(key: string) => T | null
size: () => number
clear: () => void
delete: (key: string) => boolean
clearInterval: () => void