@lokalise/node-api
Version:
Official Lokalise API 2.0 Node.js client
23 lines (18 loc) • 402 B
text/typescript
import type {
ProjectOnly,
ProjectWithPagination,
} from "./common_get_params.js";
export type CommentData = {
comment?: string;
};
export type CommentDeleted = {
project_id: string;
comment_deleted: boolean;
branch?: string;
};
export type ProjectAndKey = ProjectOnly & {
key_id: number | string;
};
export type KeyProjectPagination = ProjectWithPagination & {
key_id: number | string;
};