(subject: PyExperimentalSubject, indent = "")
| 68 | type PyExperimentalSubject = "type" | "enum" | "event"; |
| 69 | |
| 70 | function pyExperimentalComment(subject: PyExperimentalSubject, indent = ""): string { |
| 71 | return `${indent}# Experimental: this ${subject} is part of an experimental API and may change or be removed.`; |
| 72 | } |
| 73 | |
| 74 | function rewriteExternalRefsForPython(schema: JSONSchema7 & { definitions?: Record<string, JSONSchema7> }): { |
| 75 | placeholderNames: Map<string, string>; |
no outgoing calls
no test coverage detected
searching dependent graphs…