We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fluent types: https://github.com/dvanoni/notero/blob/main/scripts/generate-fluent-types.ts
preference key types: #54
需要对 zotero-types 做一些修改 (可能):
decalre const Zotero {} -> declare namespace Zotero {},因为 const 不支持继承/扩展
decalre const Zotero {}
declare namespace Zotero {}
Zotero.Prefs.get(key: string | boolean | number) ->
Zotero.Prefs.get(key: string | boolean | number)
type PrefKey = string | boolean | number Zotero.Prefs.get(key: PrefKey)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
fluent types: https://github.com/dvanoni/notero/blob/main/scripts/generate-fluent-types.ts
preference key types: #54
需要对 zotero-types 做一些修改 (可能):
decalre const Zotero {}
->declare namespace Zotero {}
,因为 const 不支持继承/扩展Zotero.Prefs.get(key: string | boolean | number)
->The text was updated successfully, but these errors were encountered: