UNPKG

@lucidcms/core

Version:

The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.

7 lines (5 loc) 220 B
/** * Adds a prefix to generated columns names. Primarily used for custom field columns in generated tables. */ declare const prefixGeneratedColName: (name: string) => `_${string}`; export { prefixGeneratedColName };