Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Jun 30, 2022
1 parent 745737d commit a8f6485
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ const ajv = new Ajv({
coerceTypes: true,
});

export type DownloadPendingAvatarsParamsPOST = {
};
export type DownloadPendingAvatarsParamsPOST = {};

const DownloadPendingAvatarsParamsPOSTSchema = {
type: 'object',
properties: {
},
properties: {},
additionalProperties: false,
required: [],
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ export type DownloadPendingFilesParamsPOST = {

const DownloadPendingFilesParamsPOSTSchema = {
type: 'object',
properties: {
},
properties: {},
additionalProperties: false,
required: [],
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,11 @@ const ajv = new Ajv({
coerceTypes: true,
});

export type GetCurrentImportOperationParamsGET = {

};
export type GetCurrentImportOperationParamsGET = {};

const GetCurrentImportOperationParamsGETSchema = {
type: 'object',
properties: {

},
properties: {},
additionalProperties: false,
required: [],
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ export type GetImportFileDataParamsGET = {

const GetImportFileDataParamsGETSchema = {
type: 'object',
properties: {
},
properties: {},
additionalProperties: false,
required: [],
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ const ajv = new Ajv({
coerceTypes: true,
});

export type GetImportProgressParamsGET = {
};
export type GetImportProgressParamsGET = {};

const GetImportProgressParamsGETSchema = {
type: 'object',
properties: {
},
properties: {},
additionalProperties: false,
required: [],
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ const ajv = new Ajv({
coerceTypes: true,
});

export type GetLatestImportOperationsParamsGET = {
};
export type GetLatestImportOperationsParamsGET = {};

const GetLatestImportOperationsParamsGETSchema = {
type: 'object',
properties: {
},
properties: {},
additionalProperties: false,
required: [],
};
Expand Down

0 comments on commit a8f6485

Please sign in to comment.