@kravc/dos 1.11.3 → 1.11.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.d.ts +2 -0
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -178,6 +178,8 @@ export type ComponentConstructor = new (...args: any[]) => any;
|
|
|
178
178
|
type OperationConstructor = new (...args: any[]) => any;
|
|
179
179
|
|
|
180
180
|
export declare class Operation {
|
|
181
|
+
constructor(context: Context);
|
|
182
|
+
|
|
181
183
|
public context: Context;
|
|
182
184
|
static get query(): SchemaAttributes | null;
|
|
183
185
|
static get mutation(): Schema | SchemaAttributes | null;
|