UNPKG

@konnec/vue-eloquent-v2

Version:

An interface for Vue and Laravel Eloquent through API

12 lines (11 loc) 306 B
export default abstract class Model<T> { protected factory(model: T): void; protected casts(): { created_at: string; updated_at: string; deleted_at: string; }; private hasCast; private getCast; protected castTo(cast: string, key: string, value: any): any; }