Compare commits

..

No commits in common. "a541a75b8f5127f6a54377dd658b256d8ad039ed" and "93818a519c9d5f85030f5749bb98b7e465c724a8" have entirely different histories.

View file

@ -1,6 +1,6 @@
import { User } from "./types"; import { User } from "./types";
const text = "This is the new text "; const text = "This is the new text";
function getFromDb(): User[] { function getFromDb(): User[] {
return [{ return [{
@ -10,6 +10,5 @@ function getFromDb(): User[] {
} }
function sendError(error: string): void { function sendError(error: string): void {
throw new Error(error); throw new Error(error);
// This is the new master
} }
console.log(text); console.log(text);