summaryrefslogtreecommitdiff
path: root/core/src/main/scala/mill/package.scala
blob: 78233cad92a8a6d883294891939725b36fd5d14f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import mill.util.JsonFormatters

package object mill extends JsonFormatters{
  val T = define.Target
  type T[T] = define.Target[T]
  val PathRef = mill.eval.PathRef
  type PathRef = mill.eval.PathRef
  type Module = define.Module
  val Module = define.Module
  type Cross[T] = define.Cross[T]
  type Agg[T] = util.Loose.Agg[T]
  val Agg = util.Loose.Agg
}