11 lines
193 B
TypeScript
11 lines
193 B
TypeScript
|
// Work in progress.
|
||
|
// TS-based schema for the sandcastle configuration.
|
||
|
|
||
|
export interface SandcastleConfig {
|
||
|
currency: string;
|
||
|
merchant: {
|
||
|
apiKey: string;
|
||
|
baseUrl: string;
|
||
|
};
|
||
|
}
|