Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
834ba90170 | |||
d78183e596 | |||
82d30a93c8 | |||
51d894cba7 | |||
bef9349216 | |||
2017634f87 | |||
56460edeb2 | |||
e2851b36d0 | |||
7f9ef12b61 | |||
d3e39fcdf2 | |||
f79c03afc5 | |||
804d7f51f9 |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fin.cx/portablefinance",
|
"name": "@fin.cx/portablefinance",
|
||||||
"version": "1.0.16",
|
"version": "1.0.22",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "an interface package for the financeplus organization",
|
"description": "an interface package for the financeplus organization",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# @financeplus/finplus-interfaces
|
# @fin.cx/portablefinance
|
||||||
an interface package for the financeplus organization
|
an interface package for the financeplus organization
|
||||||
|
|
||||||
## Availabililty and Links
|
## Availabililty and Links
|
||||||
@ -32,7 +32,5 @@ We are always happy for code contributions. If you are not the code contributing
|
|||||||
|
|
||||||
For further information read the linked docs at the top of this readme.
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
> MIT licensed | **©** [Task Venture Capital GmbH](https://lossless.gmbh)
|
||||||
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
|
|
||||||
[](https://maintainedby.lossless.com)
|
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@fin.cx/portablefinance',
|
name: '@fin.cx/portablefinance',
|
||||||
version: '1.0.16',
|
version: '1.0.22',
|
||||||
description: 'an interface package for the financeplus organization'
|
description: 'an interface package for the financeplus organization'
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
export abstract class AcCsvParser<T> {
|
import { type IMonetaryTransaction } from '../interfaces/transaction.js';
|
||||||
|
|
||||||
|
export abstract class AcCsvParser<TOriginalTrnasction> {
|
||||||
public abstract paymentProviderName: string;
|
public abstract paymentProviderName: string;
|
||||||
public abstract transactionArray: T[];
|
public abstract getTransactions(): Promise<IMonetaryTransaction[]>;
|
||||||
public abstract getTransactions(): Promise<T[]>;
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user