Files
standardnotes-app-web/packages/services/src/Domain/Import/ImportDataResult.ts

10 lines
300 B
TypeScript

import { DecryptedItemInterface } from '@standardnotes/models'
export type ImportDataResult = {
// Items that were either created or dirtied by this import
affectedItems: DecryptedItemInterface[]
// The number of items that were not imported due to failure to decrypt.
errorCount: number
}