@sedeh/extensible-json-transformations
Version:
Have you ever wanted to perform query on a JSON? Have you ever wanted to consume it in a program but the JSON was in a form not suitable for your program? Have you wanted to use the JSON without writing any code to do it? Have you wondered what it takes
16 lines (15 loc) • 390 B
TypeScript
import { Template } from './inquirer';
export interface Transformations {
name: string;
importUrls?: string[];
rootTemplate: string;
onResult?: string;
templates: Template[];
}
export declare class Styler {
private transformations;
private inquirer;
constructor(transformations: Transformations);
changeRootNode(node: any): void;
transform(): any;
}