mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-12 20:04:57 +02:00
10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
/**
|
|
* @param {Schema[]} definitions
|
|
* @param {string} [space]
|
|
* @returns {Schema}
|
|
*/
|
|
export function merge(definitions: Schema[], space?: string | undefined): Schema;
|
|
export type Properties = import('./schema.js').Properties;
|
|
export type Normal = import('./schema.js').Normal;
|
|
import { Schema } from './schema.js';
|