0
0
Fork 0

Update config to nest card information within a separate object.

This commit is contained in:
Oliver-Akins 2021-01-03 00:44:19 -07:00
parent f6a8495316
commit 9743e1a53a
2 changed files with 14 additions and 7 deletions

View file

@ -18,8 +18,15 @@ interface config {
cards: {
type: `csv` | `sheets`;
key?: string;
questions: string;
objects: string;
questions: {
fingerprint: string;
column: number;
header_rows: number;
};
objects: {
fingerprint: string;
header_rows: number;
};
};
};
}