type Method = 'put' | 'post' | 'delete' | 'get'; export type ActionRequest = { url: string; method: Method; body: any; description: string; matchers?: MatcherConfig; ignoreRequest?: boolean; }; export type MatcherConfig = { modelName: string; id: number; fields: FieldMatcher; }; export type FieldMatcher = { [requestFieldName: string]: string; }; export {};