UNPKG

@lucidcms/core

Version:

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

11 lines 375 B
//#region src/libs/collection/helpers/to-safe-table-name.d.ts /** * Converts a table name to a safe table name by truncating the name if it exceeds the limit */ declare const toSafeTableName: (name: string, limit: number | null) => { name: string; rawName: string; }; //#endregion export { toSafeTableName as default }; //# sourceMappingURL=to-safe-table-name.d.mts.map