UNPKG

shaman-website-compiler

Version:

Compile raw HTML, CSS and Javascript into the smallest possible, SEO friendly website.

6 lines (5 loc) 176 B
import { QueryModel } from "../models/query-model"; export interface IQueryAdapter { openConnection: () => Promise<void>; run: (query: QueryModel) => Promise<any[]>; }