UNPKG

smc-hub

Version:

CoCalc: Backend webserver component

12 lines (11 loc) 315 B
import { PostgreSQL } from "../postgres/types"; export interface Settings { readonly google_analytics: string | undefined; readonly dns: string; readonly site_name: string; } export declare class SettingsDAO { private database; constructor(database: PostgreSQL); get(): Promise<Settings>; }