error.ts 85 B

123
  1. export const throwError = (message: string): never => {
  2. throw new Error(message)
  3. }