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 16 lines 386 B view raw
1import type { AnalysisContext } from '@hey-api/codegen-core'; 2 3import { py } from '../../py-compiler'; 4import { PyDsl } from '../base'; 5 6export class NewlinePyDsl extends PyDsl<py.EmptyStatement> { 7 readonly '~dsl' = 'NewlinePyDsl'; 8 9 override analyze(ctx: AnalysisContext): void { 10 super.analyze(ctx); 11 } 12 13 override toAst() { 14 return py.factory.createEmptyStatement(); 15 } 16}