@designliquido/xpath
    Preparing search index...

    Interface AtomicType

    Base interface for all atomic types

    interface AtomicType {
        name: string;
        namespace: string;
        baseType?: AtomicType;
        primitive?: AtomicType;
        validate(value: any): boolean;
        cast(value: any): any;
    }

    Implemented by

    Index

    Properties

    name: string
    namespace: string
    baseType?: AtomicType
    primitive?: AtomicType

    Methods

    • Parameters

      • value: any

      Returns boolean