source: trip-planner-front/node_modules/@angular-devkit/core/src/json/schema/schema.d.ts@ 6a80231

Last change on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 895 bytes
Line 
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { JsonObject } from '../interface';
9/**
10 * A specialized interface for JsonSchema (to come). JsonSchemas are also JsonObject.
11 *
12 * @public
13 */
14export declare type JsonSchema = JsonObject | boolean;
15export declare function isJsonSchema(value: unknown): value is JsonSchema;
16/**
17 * Return a schema that is the merge of all subschemas, ie. it should validate all the schemas
18 * that were passed in. It is possible to make an invalid schema this way, e.g. by using
19 * `mergeSchemas({ type: 'number' }, { type: 'string' })`, which will never validate.
20 * @param schemas All schemas to be merged.
21 */
22export declare function mergeSchemas(...schemas: (JsonSchema | undefined)[]): JsonSchema;
Note: See TracBrowser for help on using the repository browser.