Strata - v1.4.10
    Preparing search index...

    Interface SystemConfig<T>

    System registration configuration.

    interface SystemConfig<T extends BaseEntity> {
        enabled?: boolean;
        fn: SystemFn<T>;
        name: string;
        priority?: number;
    }

    Type Parameters

    Index

    Properties

    enabled?: boolean

    Whether the system is currently active. Default: true.

    fn: SystemFn<T>

    The update function to be executed.

    name: string

    Unique name for identifying the system.

    priority?: number

    Execution priority. Lower values run first. Default: 0.