Remove unnecessary export on resolveQueries

This commit is contained in:
Koen Vlaswinkel
2023-06-02 12:07:41 +02:00
parent 96a28100b7
commit c1edd08662

View File

@@ -31,7 +31,7 @@ type FlowModelOptions = {
onResults: (results: ModeledMethodWithSignature[]) => void | Promise<void>;
};
export async function resolveQueries(
async function resolveQueries(
cliServer: CodeQLCliServer,
databaseItem: DatabaseItem,
): Promise<string[]> {