mp-holistic
Version:
si prefigge l'umile compito di aiutare nella creazione di : - un server API REST mediante express - un semplice ORM per Postgres Questo tramite decoratori o classi particolari.
20 lines (14 loc) • 351 B
text/typescript
export interface IClasseRiferimento {
nome: string,
listaMiddleware?: any[]
}
export interface IHtml {
path: string,
percorsoIndipendente?: boolean,
htmlPath?: string,
html?: string,
contenuto: string
}
export interface IRaccoltaPercorsi {
pathGlobal: string, patheader: string, porta: number
}