12 lines
No EOL
325 B
TypeScript
12 lines
No EOL
325 B
TypeScript
import Groups from "./tables/Groups";
|
|
import {DatabaseDefinition} from "./DatabaseDefinition";
|
|
import Playdate from "./tables/Playdate";
|
|
import GroupConfiguration from "./tables/GroupConfiguration";
|
|
|
|
const definitions = new Set<DatabaseDefinition>([
|
|
Groups,
|
|
Playdate,
|
|
GroupConfiguration
|
|
]);
|
|
|
|
export default definitions; |