setAction.d.ts 170 B

123456
  1. import { Action } from 'src/types';
  2. export declare function setAction(action?: Action): {
  3. '@type': string;
  4. name: string;
  5. target: string;
  6. } | undefined;