mirror of
https://github.com/standardnotes/server
synced 2026-07-31 05:16:40 -04:00
6 lines
154 B
TypeScript
6 lines
154 B
TypeScript
import { Result } from '@standardnotes/domain-core'
|
|
|
|
export interface CSVFileReaderInterface {
|
|
getValues(fileName: string): Promise<Result<string[]>>
|
|
}
|