UNPKG

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.

8 lines (7 loc) 294 B
export declare type typeGrantEvent = 'SELECT' | 'INSERT' | 'UPDATE' | 'DELETE' | 'TRUNCATE' | 'REFERENCES' | 'TRIGGER' | 'ALL PRIVILEGES'; export interface IGrant { ruoli: string[]; tabellaDestinazione?: string; colonneRiferimento?: string[]; events: typeGrantEvent[]; }