Documentation
    Preparing search index...

    Interface IMetadataSchemaUnit

    Single unit of metadata schema for one type.

    IMetadataSchemaUnit contains a metadata schema generated from a single TypeScript type via typia.reflect.schema<T>(). The main schema is in schema, while shared type definitions (objects, aliases, arrays, tuples) are stored in components.

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

    interface IMetadataSchemaUnit {
        components: IMetadataComponents;
        schema: IMetadataSchema;
    }
    Index

    Properties

    Properties

    Shared type definitions referenced by the schema.

    Metadata schema for the target type.