Provides the public embedded reactive collection API.

interface Embedded {
    create<
        D extends DocumentConstructor,
        O extends CreateOptions<InstanceType<D>>,
    >(
        FoundryDoc: D,
        options?: O,
    ): O extends typeof DynMapReducer
        ? InstanceType<O<O>>
        : O extends { ctor: typeof DynMapReducer }
            ? InstanceType<O<O>["ctor"]>
            : DynMapReducer<string, InstanceType<D>>;
    destroy<D extends DocumentConstructor>(
        FoundryDoc?: D,
        reducerName?: string,
    ): boolean;
    get<D extends DocumentConstructor>(
        FoundryDoc: D,
        reducerName?: string,
    ): DynMapReducer<string, InstanceType<D>>;
}

Methods

  • Destroys one or more embedded collection reducers. When no reducerName is provided all reactive embedded collections are destroyed for the given document type.

    Type Parameters

    Parameters

    • OptionalFoundryDoc: D

      A Foundry document class constructor.

    • OptionalreducerName: string

      Optional name of a specific reducer to destroy.

    Returns boolean

  • Returns a specific existing embedded collection store. When no reducerName is provided the document name is used instead.

    Type Parameters

    Parameters

    • FoundryDoc: D

      A Foundry document class constructor.

    • OptionalreducerName: string

      Optional name of a specific reducer to get.

    Returns DynMapReducer<string, InstanceType<D>>

    The associated reactive embedded collection / reducer.