Plugin.d.ts 189 B

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