12345678910111213141516171819202122 |
- export type CreateProjectKeyInput = {
- key_name: string;
- description?: string;
- platforms: Array<string>;
- filenames?: {
- [key: string]: string;
- };
- tags?: Array<string>;
- translations?: Array<{
- language_iso: string;
- translation: string;
- is_reviewed?: boolean;
- is_unverified?: boolean;
- custom_translation_status_ids?: Array<string>;
- }>;
- is_plural?: boolean;
- plural_name?: string;
- is_hidden?: boolean;
- is_archived?: boolean;
- context?: string;
- char_limit?: number;
- };
|