summaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/sandcastle-config.ts
blob: a7f7233acc366dc8307a844f6845d461ee02cc20 (plain)
1
2
3
4
5
6
7
8
9
10
// Work in progress.
// TS-based schema for the sandcastle configuration.

export interface SandcastleConfig {
  currency: string;
  merchant: {
    apiKey: string;
    baseUrl: string;
  };
}