9 lines
309 B
JavaScript
9 lines
309 B
JavaScript
|
import { CommonDescription } from "./description.mjs";
|
||
|
import { CommonInventaire } from "./inventaire.mjs";
|
||
|
|
||
|
export const TEMPLATE_DESCRIPTION = new CommonDescription()
|
||
|
export const TEMPLATE_INVENTAIRE = new CommonInventaire()
|
||
|
|
||
|
export const ALL_COMMON_TEMPLATES = [TEMPLATE_DESCRIPTION, TEMPLATE_INVENTAIRE]
|
||
|
|