portablefinance/ts/interfaces/csvparser.ts

4 lines
61 B
TypeScript
Raw Normal View History

2019-06-24 13:49:42 +00:00
export interface ICsvParser {
parse: () => Promise<any>;
}