2
0
mirror of https://github.com/frappe/books.git synced 2025-01-23 07:08:36 +00:00

12 lines
264 B
TypeScript
Raw Normal View History

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