export function success()

in scripts/dashboard-importer/src/common/result.ts [26:37]


export function success<T>(
  result: T,
  warnings: string[] = [],
  errors: string[] = [],
): Result<T> {
  return {
    result,
    warnings,
    errors,
    isSuccess: true,
  };
}