2
0
mirror of https://github.com/frappe/books.git synced 2024-12-23 11:29:03 +00:00
books/schemas/regional/index.ts

12 lines
264 B
TypeScript
Raw Normal View History

2022-03-25 10:12:39 +00:00
import { SchemaStub } from 'schemas/types';
2022-03-23 14:46:19 +00:00
import IndianSchemas from './in';
2023-11-02 21:21:12 +00:00
import SwissSchemas from './ch';
2022-03-23 14:46:19 +00:00
/**
* Regional Schemas are exported by country code.
*/
2023-11-02 21:21:12 +00:00
export default { in: IndianSchemas, ch: SwissSchemas } as Record<
string,
SchemaStub[]
>;