mirror of
https://github.com/frappe/books.git
synced 2024-11-15 01:44:04 +00:00
12 lines
264 B
TypeScript
12 lines
264 B
TypeScript
import { SchemaStub } from 'schemas/types';
|
|
import IndianSchemas from './in';
|
|
import SwissSchemas from './ch';
|
|
|
|
/**
|
|
* Regional Schemas are exported by country code.
|
|
*/
|
|
export default { in: IndianSchemas, ch: SwissSchemas } as Record<
|
|
string,
|
|
SchemaStub[]
|
|
>;
|