UNPKG

node-schematron

Version:

A pure-JS Schematron implementation for Node, browsers and CLI

15 lines (14 loc) 410 B
import { Variable, VariableJson } from './Variable'; export declare class Phase { id: string; active: string[]; variables: Variable[]; constructor(id: string, active: string[], variables: Variable[]); static QUERY: string; static fromJson(json: PhaseJson): Phase; } export declare type PhaseJson = { id: string; active: string[]; variables: VariableJson[]; };