11 lines
176 B
TypeScript
11 lines
176 B
TypeScript
import { PaginationParams } from './common';
|
|
|
|
/**
|
|
* @category Request params
|
|
*/
|
|
type GetCircleStatusesParams = PaginationParams;
|
|
|
|
export type {
|
|
GetCircleStatusesParams,
|
|
};
|