esbuild-wasm-deno/what/entry.ts
2025-02-28 13:23:17 -05:00

10 lines
198 B
TypeScript

import React from "react";
import Message from "./include_a.ts";
type Person = {name:string, age:number};
const me:Person = {name:"seth", age:41};
console.log(Message, React);
export default me;