ngx-json-schema-viewer
Version:
<h1 align="center">ngx-json-schema-viewer</h1>
12 lines (11 loc) • 529 B
TypeScript
import { PipeTransform } from '@angular/core';
import type { JSONSchema } from "../types";
import * as i0 from "@angular/core";
type ValueType = Record<string, JSONSchema>;
type OutputType = Exclude<JSONSchema, true | false>;
export declare class DependentSchemasPipe implements PipeTransform {
transform(dependentSchemas: ValueType): OutputType;
static ɵfac: i0.ɵɵFactoryDeclaration<DependentSchemasPipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<DependentSchemasPipe, "dependentSchemas", true>;
}
export {};