File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 8080 # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8181 # NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
8282 - name : APM Release 🎉
83- uses : cycjimmy/semantic-release-action@v2
83+ uses : cycjimmy/semantic-release-action@v2.5.0
8484 with :
8585 extends : |
8686 @semantic-release/apm-config
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export * from "./find-references"
1010export * from "./hyperclick"
1111export * from "./outline"
1212export * from "./sig-help"
13+ export * from "./markdown-service"
1314
1415import { BusySignalProvider } from "./busy-signal.d"
1516import { CodeActionProvider } from "./code-actions"
Original file line number Diff line number Diff line change 1+ /**
2+ * the markdown service object
3+ */
4+ export interface MarkdownService {
5+ // function to render markdown for the given grammar
6+ render ( markdownText : string , grammar : string ) : Promise < string >
7+ }
You can’t perform that action at this time.
0 commit comments