@lokalise/node-api
Version:
Official Lokalise API 2.0 Node.js client
21 lines (16 loc) • 354 B
text/typescript
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;
};