github.github._constructor_
Home > @runlightyear/github > GitHub > (constructor)
GitHub.(constructor)
Constructs a new instance of the GitHub
class
constructor(props: GitHubConnectorProps);
Parameters
Parameter | Type | Description |
---|---|---|
props | GitHubConnectorProps |
Example
defineAction({
name: "githubExample",
title: "GitHub Example",
apps: ["github"],
run: ({ auths }) => {
const github = new GitHub({ auth: auths.github });
}
})