• 비동기 task 실행

    Type Parameters

    • T = any

    Returns {
        completedCallback: ShallowRef<((result) => void | Promise<void>)>;
        startTask: ((taskFunction?) => Promise<T>);
    }

    • completedCallback : 완료 callback function
    • startTask : 작업 시작
    • completedCallback: ShallowRef<((result) => void | Promise<void>)>
    • startTask: ((taskFunction?) => Promise<T>)
        • (taskFunction?): Promise<T>
        • Parameters

          • Optional taskFunction: Function

          Returns Promise<T>

Generated using TypeDoc