```import * as github from "@pulumi/github" const...
# getting-started
k
Copy code
import * as github from "@pulumi/github"

const repo = new github.Repository("demo-repo", {
    name: "demo-repo-final",
    description: "Generated from automated test",
    visibility: "private",
}, { deleteBeforeReplace: true })