@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
15 lines (14 loc) • 734 B
TypeScript
import { OnInit, OnChanges, EventEmitter } from '@angular/core';
import { Transformations } from './shared/transformations';
import * as i0 from "@angular/core";
export declare class XjsltComponent implements OnInit, OnChanges {
private styler;
node: {};
transformations: Transformations;
ontransformation: EventEmitter<any>;
onerror: EventEmitter<any>;
ngOnInit(): void;
ngOnChanges(chages: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<XjsltComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<XjsltComponent, "xjslt", never, { "node": "node"; "transformations": "transformations"; }, { "ontransformation": "ontransformation"; "onerror": "onerror"; }, never, never, true, never>;
}