2
0
mirror of https://github.com/frappe/books.git synced 2024-11-15 01:44:04 +00:00
books/schemas/regional/index.ts
2023-11-28 22:14:35 +01:00

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