type-dexie
Version:
class oriented schema building tool for dexie.js
12 lines (11 loc) • 365 B
TypeScript
import { Cls, Key } from '../types';
declare class Naming {
private static readonly LAST_WORD;
private static readonly PLURALIZE_RULES;
camelCase(target: Cls): string;
pluralize(input: string): string;
table(target: Cls): string;
prop(target: Cls, propertyKey: Key): string;
}
declare const naming: Naming;
export default naming;