We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec374ca commit 47592b2Copy full SHA for 47592b2
src/normalize.ts
@@ -3,7 +3,7 @@ import { CommandContext, setCommandContext } from './constants';
3
4
interface CodeNormalizer {
5
isRelevant: (u: Uri) => boolean;
6
- normalize: (code: string, uri: Uri) => string;
+ normalize: (code: string, uri: Uri) => string | Promise<string>;
7
}
8
9
const normalizers: CodeNormalizer[] = [];
0 commit comments