2
0
mirror of https://github.com/frappe/books.git synced 2024-12-22 19:09:01 +00:00
books/schemas/regional/index.ts

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

12 lines
264 B
TypeScript
Raw Permalink 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[]
>;