Files
standardnotes-server/packages/auth/src/Domain/CSV/CSVFileReaderInterface.ts
T

6 lines
154 B
TypeScript

import { Result } from '@standardnotes/domain-core'
export interface CSVFileReaderInterface {
getValues(fileName: string): Promise<Result<string[]>>
}