Skip to content

Commit

Permalink
Merge pull request #7 from github/ncalteen/types
Browse files Browse the repository at this point in the history
Export types
  • Loading branch information
ncalteen authored Jan 16, 2025
2 parents cd4fa74 + b0d3e4b commit 2caa856
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
2 changes: 2 additions & 0 deletions dist/index.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@github/issue-parser",
"description": "Convert issue form responses to JSON",
"version": "1.0.0",
"version": "1.0.1",
"author": "Nick Alteen <[email protected]>",
"type": "module",
"homepage": "https://github.com/github/issue-parser#readme",
Expand Down
10 changes: 10 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,13 @@ export function parseTemplate(template?: string): {

return parsedTemplate
}

export { FieldType } from './enums.js'
export type {
Checkboxes,
CheckboxesField,
DropdownField,
FormattedField,
InputField,
ParsedBody
} from './types.js'

0 comments on commit 2caa856

Please sign in to comment.