Update config to nest card information within a separate object.
This commit is contained in:
parent
f6a8495316
commit
9743e1a53a
2 changed files with 14 additions and 7 deletions
11
server/src/types/config.d.ts
vendored
11
server/src/types/config.d.ts
vendored
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue