Skip to content

Commit

Permalink
chore: export types from models
Browse files Browse the repository at this point in the history
  • Loading branch information
junners committed Jan 26, 2025
1 parent 1e59457 commit d26ebf5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main/models/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { Flow } from "./Flow";
import { ParsedFlow } from "./ParsedFlow";
import { ResultDetails } from "./ResultDetails";
import { RuleResult } from "./RuleResult";
import { ScanResult } from "./ScanResult";
import { FlowAttribute } from "./FlowAttribute";
import { FlowElement } from "./FlowElement";
import { FlowNode } from "./FlowNode";
import { FlowResource } from "./FlowResource";
import { FlowType } from "./FlowType";
import { FlowVariable } from "./FlowVariable";
export {
import type { Flow } from "./Flow";
import type { ParsedFlow } from "./ParsedFlow";
import type { ResultDetails } from "./ResultDetails";
import type { RuleResult } from "./RuleResult";
import type { ScanResult } from "./ScanResult";
import type { FlowAttribute } from "./FlowAttribute";
import type { FlowElement } from "./FlowElement";
import type { FlowNode } from "./FlowNode";
import type { FlowResource } from "./FlowResource";
import type { FlowType } from "./FlowType";
import type { FlowVariable } from "./FlowVariable";
export type {
Flow,
ParsedFlow,
ResultDetails,
Expand Down

0 comments on commit d26ebf5

Please sign in to comment.