export type FlowStepTransformErrorCode = 'orphan-annotation' | 'invalid-annotation'; export interface FlowStepTransformError { readonly code: FlowStepTransformErrorCode; readonly file: string; readonly line: number; readonly message: string; } //# sourceMappingURL=transform-error.d.ts.map