create_project_key_input.d.ts 564 B

12345678910111213141516171819202122
  1. export type CreateProjectKeyInput = {
  2. key_name: string;
  3. description?: string;
  4. platforms: Array<string>;
  5. filenames?: {
  6. [key: string]: string;
  7. };
  8. tags?: Array<string>;
  9. translations?: Array<{
  10. language_iso: string;
  11. translation: string;
  12. is_reviewed?: boolean;
  13. is_unverified?: boolean;
  14. custom_translation_status_ids?: Array<string>;
  15. }>;
  16. is_plural?: boolean;
  17. plural_name?: string;
  18. is_hidden?: boolean;
  19. is_archived?: boolean;
  20. context?: string;
  21. char_limit?: number;
  22. };