We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f28683 commit 33343dcCopy full SHA for 33343dc
1 file changed
packages/js/client/scripts/extractPluginConfigs.ts
@@ -102,7 +102,7 @@ function main(): void {
102
103
for (const pluginType of file.types || []) {
104
const typ = sourceFile.getTypeAliasOrThrow(pluginType);
105
- output += `\n\n${typ.print().replace("declare ", "")}`;
+ output += `\n\n${typ.print().replace("declare ", "").replace(/ /g, " ")}`;
106
}
107
108
0 commit comments