Skip to content

Commit 296e740

Browse files
committed
feat: adds tsp project
1 parent 350aaa9 commit 296e740

5 files changed

Lines changed: 3661 additions & 0 deletions

File tree

additions/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# MacOS
2+
.DS_Store
3+
4+
# Default TypeSpec output
5+
tsp-output/
6+
dist/
7+
8+
# Dependency directories
9+
node_modules/

additions/main.tsp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import "@microsoft/typespec-msgraph";
2+
3+
using Http;
4+
@service(#{ title: "Microsoft Graph" })
5+
namespace Microsoft.Graph;
6+
7+
@entity()
8+
model OrgContact {
9+
}

0 commit comments

Comments
 (0)