@ac-essentials/app-util
    Preparing search index...

    Type Alias GetProcessesSnapshotOptions

    type GetProcessesSnapshotOptions = {
        fields?: (keyof ProcessInfo)[] | null;
        filters?: GetProcessesSnapshotFilters | null;
        signal?: AbortSignal | null;
    }
    Index

    Properties

    fields?: (keyof ProcessInfo)[] | null

    Fields to include in the result. Defaults to null.

    If the array is empty or not provided, all available fields will be included in the result.

    Filters to apply to the process list.

    signal?: AbortSignal | null

    Optional signal that can be used to abort the operation.