We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82d682e commit 7dc1cc8Copy full SHA for 7dc1cc8
src/@types/settings.ts
@@ -58,7 +58,12 @@ export interface Limits {
58
event?: EventLimits
59
}
60
61
+export interface Worker {
62
+ count: number
63
+}
64
+
65
export interface ISettings {
66
info: Info
67
+ workers?: Worker
68
limits?: Limits
69
src/utils/settings.ts
@@ -25,6 +25,9 @@ export class SettingsStatic {
25
pubkey: 'replace-with-your-pubkey',
26
contact: '[email protected]',
27
},
28
+ workers: {
29
+ count: 0,
30
+ },
31
limits: {
32
event: {
33
eventId: {
0 commit comments