10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
import type { PaginationParams } from './common';
|
|
|
|
/**
|
|
* @category Request params
|
|
*/
|
|
type GetScheduledStatusesParams = PaginationParams;
|
|
|
|
export type {
|
|
GetScheduledStatusesParams,
|
|
};
|