create-kda
Advanced tools
Comparing version 0.0.15 to 0.0.16
{ | ||
"name": "create-kda", | ||
"version": "0.0.15", | ||
"version": "0.0.16", | ||
"main": "index.mjs", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/kdajs/create-kda.git", |
import 'kda' | ||
import models from '../models' | ||
import utils from '../utils' | ||
import { Models } from '../models' | ||
interface CustomState { | ||
// models: Models | ||
utils: typeof utils | ||
declare module 'kda' { | ||
interface CustomStore { | ||
// models: typeof models | ||
utils: typeof utils | ||
} | ||
} | ||
@@ -9,0 +11,0 @@ |
@@ -39,4 +39,2 @@ import { createModels, ModelsRepository } from 'kda' | ||
export type Models = ModelsRepository<ModelsEntity> | ||
export default await createModels<ModelsEntity>({ | ||
@@ -43,0 +41,0 @@ ...getConfig(), |
235
22142