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 { PyFunctionParameter } from './declarations/functionParameter';
4import type { PyAssignment } from './statements/assignment';
5import type { PyAugmentedAssignment } from './statements/augmentedAssignment';
6import type { PyBreakStatement } from './statements/break';
7import type { PyContinueStatement } from './statements/continue';
8import type { PyEmptyStatement } from './statements/empty';
9import type { PyExpressionStatement } from './statements/expression';
10import type { PyForStatement } from './statements/for';
11import type { PyIfStatement } from './statements/if';
12import type { PyImportStatement } from './statements/import';
13import type { PyRaiseStatement } from './statements/raise';
14import type { PyReturnStatement } from './statements/return';
15import type { PyTryStatement } from './statements/try';
16import type { PyWhileStatement } from './statements/while';
17import type { PyWithStatement } from './statements/with';
18import type { PyComment } from './structure/comment';
19
20export type PyStatement =
21 | PyAssignment
22 | PyAugmentedAssignment
23 | PyBreakStatement
24 | PyClassDeclaration
25 | PyComment
26 | PyContinueStatement
27 | PyEmptyStatement
28 | PyExpressionStatement
29 | PyForStatement
30 | PyFunctionDeclaration
31 | PyFunctionParameter
32 | PyIfStatement
33 | PyImportStatement
34 | PyRaiseStatement
35 | PyReturnStatement
36 | PyTryStatement
37 | PyWhileStatement
38 | PyWithStatement;