-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: [temp] skip stonecrop api extraction
- Loading branch information
Rohan Bansal
committed
Dec 13, 2024
1 parent
92b13b0
commit e9a06f5
Showing
25 changed files
with
336 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [@stonecrop/desktop](./desktop.md) > [StonecropDesktop](./desktop.stonecropdesktop.md) | ||
|
||
## StonecropDesktop variable | ||
|
||
This is the main plugin file that will be used to register all the components that we want to use in our application. | ||
|
||
**Signature:** | ||
|
||
```typescript | ||
plugin: Plugin = { | ||
install: (app: App) => { | ||
app.component('ActionSet', ActionSet) | ||
app.component('CommandPalette', CommandPalette) | ||
app.component('Doctype', Doctype) | ||
app.component('Records', Records) | ||
app.component('SheetNav', SheetNav) | ||
}, | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!-- Do not edit this file. It is automatically generated by API Documenter. --> | ||
|
||
[Home](./index.md) > [@stonecrop/graphql-client](./graphql-client.md) > [Meta](./graphql-client.meta.md) | ||
|
||
## Meta type | ||
|
||
The type of the response from the `getMeta` query. | ||
|
||
**Signature:** | ||
|
||
```typescript | ||
export type Meta = { | ||
variables: { | ||
doctype: string | ||
} | ||
|
||
response: { | ||
getMeta: MetaResponse | ||
} | ||
} | ||
``` | ||
**References:** [MetaResponse](./graphql-client.metaresponse.md) | ||
Oops, something went wrong.