6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
|
import { DefaultParams } from '../types/default-params.type';
|
||
|
|
||
|
export interface IProvideParams {
|
||
|
getParams(): DefaultParams;
|
||
|
}
|