🔧Panic

type Panic = (
  message: any,
  opt?: {cause?: any; shouldExit?: boolean}
) => never

Panic is the type of the panic function which will be called when error occurs.

Last updated