Skip to content

Commit

Permalink
fix: some type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalii Smolinskyi committed Feb 13, 2025
1 parent 73ca815 commit 8e93272
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/sourceFiles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,8 @@ export namespace SourceFilesModel {
| 'svg'
| 'js'
| 'coffee'
| 'nestjs_i18n';
| 'nestjs_i18n'
| 'webxml';

export interface SpreadsheetImportOptions {
firstLineContainsHeader?: boolean;
Expand Down
6 changes: 3 additions & 3 deletions src/users/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,9 @@ export namespace UsersModel {
export type LanguageRole = 'proofreader' | 'translator' | 'denied';

export interface AddProjectMemberRequest {
userIds: number[];
usernames: string[];
emails: string[];
userIds?: number[];
usernames?: string[];
emails?: string[];
managerAccess?: boolean;
roles?: ProjectRole[];
developerAccess?: boolean;
Expand Down

0 comments on commit 8e93272

Please sign in to comment.