Fix linting errors

This commit is contained in:
Laurent Nguyen
2024-05-13 18:51:28 +02:00
parent 17c36f18b3
commit 410344865c

View File

@@ -100,19 +100,19 @@ describe("Documents tab (Mongo API)", () => {
selectedSubnodeKind: undefined, selectedSubnodeKind: undefined,
children: undefined, children: undefined,
isCollectionExpanded: undefined, isCollectionExpanded: undefined,
onDocumentDBDocumentsClick: function (): void { onDocumentDBDocumentsClick: (): void => {
throw new Error("Function not implemented."); throw new Error("Function not implemented.");
}, },
onNewQueryClick: function (source: any, event?: MouseEvent, queryText?: string): void { onNewQueryClick: (): void => {
throw new Error("Function not implemented."); throw new Error("Function not implemented.");
}, },
expandCollection: function (): void { expandCollection: (): void => {
throw new Error("Function not implemented."); throw new Error("Function not implemented.");
}, },
collapseCollection: function (): void { collapseCollection: (): void => {
throw new Error("Function not implemented."); throw new Error("Function not implemented.");
}, },
getDatabase: function (): ViewModels.Database { getDatabase: (): ViewModels.Database => {
throw new Error("Function not implemented."); throw new Error("Function not implemented.");
}, },
nodeKind: "nodeKind", nodeKind: "nodeKind",