This commit is contained in:
Iliyan Angelov
2025-09-14 23:24:25 +03:00
commit c67067a2a4
71311 changed files with 6800714 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/**
* @param {Definition} definition
* @returns {Schema}
*/
export function create(definition: Definition): Schema;
export type Properties = import('./schema.js').Properties;
export type Normal = import('./schema.js').Normal;
export type Attributes = Record<string, string>;
export type Definition = {
properties: Record<string, number | null>;
transform: (attributes: Attributes, property: string) => string;
space?: string;
attributes?: Attributes;
mustUseProperty?: Array<string>;
};
import { Schema } from './schema.js';