UNPKG

358 Btext/x-handlebars-templateView Raw
1/***/
2/**
3 * Common functionalities for the {{id}} plugin.
4 *
5 * @packageDocumentation
6 */
7
8/**
9 * In this package you might for example declare types that are common
10 * between the frontend and backend plugin packages.
11 */
12export type CommonType = {
13 field: string
14}
15
16/**
17 * Or you might declare some common constants.
18 */
19export const COMMON_CONSTANT = 1
20
\No newline at end of file