Saxonberg Server API
    Preparing search index...

    Interface for Document constructors. Used by the static findById / find this-bound generics so the inferred subclass type carries through.

    interface DocumentConstructor {
        new DocumentConstructor(...args: unknown[]): Document;
        collectionName: string;
        persistentFields?: string[];
        getAllPersistentFields?(): string[];
    }
    Index

    Constructors

    Properties

    collectionName: string
    persistentFields?: string[]

    Methods