blob: 4f80b150ea1580c51083a73cfd5790d2b8a009c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import type { DatabaseDefinition } from '../../..';
import collation from './collation';
import engine from './engine';
import type_ from './type';
const database: DatabaseDefinition = {
collation,
engine,
type: type_,
};
export default database;
|