fork of hey-api/openapi-ts because I need some additional things
at feat/skip-token 12 lines 290 B view raw
1import type { PyNodeBase } from '../base'; 2import { PyNodeKind } from '../kinds'; 3 4export interface PyEmptyStatement extends PyNodeBase { 5 kind: PyNodeKind.EmptyStatement; 6} 7 8export function createEmptyStatement(): PyEmptyStatement { 9 return { 10 kind: PyNodeKind.EmptyStatement, 11 }; 12}