matcher/old/modules/ad/domain/interfaces/params-provider.interface.ts

6 lines
129 B
TypeScript
Raw Normal View History

2023-05-12 14:23:42 +00:00
import { DefaultParams } from '../types/default-params.type';
export interface IProvideParams {
getParams(): DefaultParams;
}