Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Mandarine.ApplicationContext.ApplicationContextMetadata

import type { Mandarine } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/main-core/Mandarine.ns.ts"; 

const { ApplicationContextMetadata } = Mandarine.ApplicationContext;

Stats/Metadata of Mandarine's core. This includes information such as: When Mandarine was started, number of templates, controller, and others.

interface ApplicationContextMetadata {
engineMetadata?: {
orm?: {
dbEntitiesAmount?: number;
repositoriesAmount?: number;
}
;
mvc?: {
middlewareAmount?: number;
templatesAmount?: number;
controllersAmount?: number;
}
;
}
;
startupDate?: number;
}

§Properties

§
engineMetadata?: {
orm?: {
dbEntitiesAmount?: number;
repositoriesAmount?: number;
}
;
mvc?: {
middlewareAmount?: number;
templatesAmount?: number;
controllersAmount?: number;
}
;
}
[src]
§
startupDate?: number
[src]