Action.d.ts 210 B

12345678
  1. import { FC } from "react";
  2. export interface ActionProps {
  3. name: string;
  4. content: string;
  5. [key: string]: unknown;
  6. }
  7. export declare const Action: FC<ActionProps>;
  8. //# sourceMappingURL=Action.d.ts.map