2
0
mirror of https://github.com/frappe/books.git synced 2025-01-22 22:58:28 +00:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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[]
>;