weasel API - v0.8.0
    Preparing search index...

    Interface DepRegistry

    interface DepRegistry {
        get<K extends keyof DepSchema>(name: K): DepSchema[K] | undefined;
        register<K extends keyof DepSchema>(
            name: K,
            source: () => DepSchema[K],
        ): () => void;
    }
    Index

    Methods

    Methods