Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 390 Bytes

test.md

File metadata and controls

46 lines (33 loc) · 390 Bytes

#h1 hello

type Test = {
  a: string;
};

const test: Test = {
  a: "hello",
};
type Test = {
  b: number;
};

const test: Test = {
  b: 123,
};
const x: number = 1;
const hello = "hello";
console.log(hello);
type Test = {
  a: number;
};

const test: Test = {
  a: "hello",
};