Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/netzo/plugins/types.ts>Project

Full-stack Deno framework for building business web apps like internal tools, dashboards, admin panels and automated workflows.
Go to Latest
type alias Project
import { type Project } from "https://deno.land/x/netzo@0.5.94/plugins/types.ts";
definition: { [k: string]: unknown; _id: string; createdAt: string; updatedAt: string; workspaceId: string; uid: string; name: string; description: string; labels: string[]; avatar: string; denoProductionDeploymentId: string; denoLatestDeploymentId: string; apiKeyId: string; env: { development: Record<string, string | { _id: string; }>; production: Record<string, string | { _id: string; }>; }; envVars?: { development: Record<string, string>; production: Record<string, string>; }; denoId: string; deno?: { id: string; name: string; description: string; createdAt: string; updatedAt: string; usages: { fields: { name: string; type:
| "time"
| "number"
| "string"
| "boolean"
| "other"
; }; values: (
| string
| number
| boolean
| unknown
)[]; }; }; }