UNPKG

@lokalise/node-api

Version:
21 lines (16 loc) 354 B
export type TeamOnly = { team_id: string | number; }; export type ProjectOnly = { project_id: string; }; export type PaginationParams = { page?: number; limit?: number; }; export type ProjectWithPagination = ProjectOnly & PaginationParams; export type CursorPagination = { limit?: number; pagination?: "offset" | "cursor"; cursor?: string; };