Documentation
    Preparing search index...

    Interface IMetadataSchemaCollection

    Collection of metadata schemas for multiple types.

    IMetadataSchemaCollection contains metadata schemas generated from multiple TypeScript types via typia.reflect.schemas<[T1, T2, ...]>(). Each schema in schemas corresponds to one input type, while shared type definitions (objects, aliases, arrays, tuples) are stored in components.

    Jeongho Nam - https://github.com/samchon

    interface IMetadataSchemaCollection {
        components: IMetadataComponents;
        schemas: IMetadataSchema[];
    }
    Index

    Properties

    Properties

    Shared type definitions referenced by schemas.

    schemas: IMetadataSchema[]

    Array of metadata schemas, one per input type.