rangoo94/bestest

View on GitHub
packages/compiler/lib/interfaces/CompilerCallbackType.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { FileSystemInterface } from '@bestest/fs/lib/interfaces/FileSystemInterface'
import { CompilerCompileErrorInterface } from './CompilerCompileErrorInterface'

type CompilerCallbackType = (
  error: CompilerCompileErrorInterface | null,
  fs: FileSystemInterface | null,
  entries: string[] | null
) => any

export {
  CompilerCallbackType
}