persona-community-5/.pnpm-store/v3/files/f8/2a5cbf0e6e9b36085f67753ab4597335aff7158ece4c57d8143860aab1db77ddd3289fcc1595f37c5498cd7235f200f3f6026fa451b345f7cb9c6d1945f57a
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

18 lines
429 B
Plaintext

import { Type } from './type';
export interface SchemaDefinition {
include?: Schema[];
implicit?: Type[];
explicit?: Type[];
}
export declare class Schema {
include: Schema[];
implicit: Type[];
explicit: Type[];
compiledImplicit: any[];
compiledExplicit: any[];
compiledTypeMap: any[];
constructor(definition: SchemaDefinition);
static DEFAULT: any;
static create: () => Schema;
}