File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -128,9 +128,6 @@ export function generateClientType(server: Server) {
128
128
f . createStringLiteral ( method ) ,
129
129
undefined ,
130
130
f . createTypeLiteralNode ( Object . entries ( route ) . map ( ( [ path , options ] ) => {
131
- if ( path === "/audits/{audit_uid}/users" ) {
132
- console . log ( options ) ;
133
- }
134
131
return f . createPropertySignature (
135
132
[ ] ,
136
133
f . createStringLiteral ( path ) ,
@@ -149,7 +146,6 @@ export function generateClientType(server: Server) {
149
146
const sourceFile = factory . createSourceFile ( statements , factory . createToken ( SyntaxKind . EndOfFileToken ) , NodeFlags . None ) ;
150
147
const printer = createPrinter ( ) ;
151
148
const clientType = printer . printNode ( EmitHint . SourceFile , sourceFile , sourceFile ) ;
152
- console . error ( clientType ) ;
153
149
return clientType ;
154
150
}
155
151
You can’t perform that action at this time.
0 commit comments