fork of hey-api/openapi-ts because I need some additional things
1import type { PyClassDeclaration } from './declarations/class';
2import type { PyFunctionDeclaration } from './declarations/function';
3import type { PyAssignment } from './statements/assignment';
4import type { PyAugmentedAssignment } from './statements/augmentedAssignment';
5import type { PyBreakStatement } from './statements/break';
6import type { PyContinueStatement } from './statements/continue';
7import type { PyEmptyStatement } from './statements/empty';
8import type { PyExpressionStatement } from './statements/expression';
9import type { PyForStatement } from './statements/for';
10import type { PyIfStatement } from './statements/if';
11import type { PyImportStatement } from './statements/import';
12import type { PyRaiseStatement } from './statements/raise';
13import type { PyReturnStatement } from './statements/return';
14import type { PyTryStatement } from './statements/try';
15import type { PyWhileStatement } from './statements/while';
16import type { PyWithStatement } from './statements/with';
17import type { PyComment } from './structure/comment';
18
19export type PyStatement =
20 | PyAssignment
21 | PyAugmentedAssignment
22 | PyBreakStatement
23 | PyClassDeclaration
24 | PyComment
25 | PyContinueStatement
26 | PyEmptyStatement
27 | PyExpressionStatement
28 | PyForStatement
29 | PyFunctionDeclaration
30 | PyIfStatement
31 | PyImportStatement
32 | PyRaiseStatement
33 | PyReturnStatement
34 | PyTryStatement
35 | PyWhileStatement
36 | PyWithStatement;