UNPKG

miniml

Version:

A minimal, embeddable semantic data modeling language for generating SQL queries from YAML model definitions. Inspired by LookML.

5 lines (4 loc) 263 B
import { MinimlModel } from "./common.js"; export declare function createModel(obj: string | {}, file?: string): MinimlModel; export declare function loadModel(file: string): Promise<MinimlModel>; export declare function loadModelSync(file: string): MinimlModel;