/***/ /** * Common functionalities for the {{id}} plugin. * * @packageDocumentation */ /** * In this package you might for example declare types that are common * between the frontend and backend plugin packages. */ export type CommonType = { field: string; }; /** * Or you might declare some common constants. */ export const COMMON_CONSTANT = 1;