EarthSDK
    正在准备搜索索引...

    类型别名 StartProcessingFuncType<CompleteValueType, StartValueType>

    StartProcessingFuncType: (
        options: {
            completeFunc: (value: CompleteValueType) => void;
            errorFunc: (error: any) => void;
            runningingID: number;
        },
        ...args: StartValueType,
    ) => (cancelError?: CancelError) => void

    类型参数

    • CompleteValueType
    • StartValueType extends any[]

    类型声明

      • (
            options: {
                completeFunc: (value: CompleteValueType) => void;
                errorFunc: (error: any) => void;
                runningingID: number;
            },
            ...args: StartValueType,
        ): (cancelError?: CancelError) => void
      • 参数

        • options: {
              completeFunc: (value: CompleteValueType) => void;
              errorFunc: (error: any) => void;
              runningingID: number;
          }
        • ...args: StartValueType

        返回 (cancelError?: CancelError) => void