관리-도구
편집 파일: isScheduler.ts
import { SchedulerLike } from '../types'; import { isFunction } from './isFunction'; export function isScheduler(value: any): value is SchedulerLike { return value && isFunction(value.schedule); }