fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/use-query-options 42 lines 1.7 kB view raw
1import type { PyComprehension } from './comprehension'; 2import type { PyAsyncExpression } from './expressions/async'; 3import type { PyAwaitExpression } from './expressions/await'; 4import type { PyBinaryExpression } from './expressions/binary'; 5import type { PyCallExpression } from './expressions/call'; 6import type { PyDictExpression } from './expressions/dict'; 7import type { PyFStringExpression } from './expressions/fString'; 8import type { PyGeneratorExpression } from './expressions/generator'; 9import type { PyIdentifier } from './expressions/identifier'; 10import type { PyKeywordArgument } from './expressions/keywordArg'; 11import type { PyLambdaExpression } from './expressions/lambda'; 12import type { PyListExpression } from './expressions/list'; 13import type { PyLiteral } from './expressions/literal'; 14import type { PyMemberExpression } from './expressions/member'; 15import type { PySetExpression } from './expressions/set'; 16import type { PySubscriptExpression } from './expressions/subscript'; 17import type { PySubscriptSlice } from './expressions/subscript-slice'; 18import type { PyTupleExpression } from './expressions/tuple'; 19import type { PyYieldExpression } from './expressions/yield'; 20import type { PyYieldFromExpression } from './expressions/yieldFrom'; 21 22export type PyExpression = 23 | PyAsyncExpression 24 | PyAwaitExpression 25 | PyBinaryExpression 26 | PyCallExpression 27 | PyComprehension 28 | PyDictExpression 29 | PyFStringExpression 30 | PyGeneratorExpression 31 | PyIdentifier 32 | PyKeywordArgument 33 | PyLambdaExpression 34 | PyListExpression 35 | PyLiteral 36 | PyMemberExpression 37 | PySetExpression 38 | PySubscriptExpression 39 | PySubscriptSlice 40 | PyTupleExpression 41 | PyYieldExpression 42 | PyYieldFromExpression;