Closed Seidko closed 1 year ago
import { Context } from 'koishi' import type { } from '@koishijs/cache' declare module 'koishi' { interface Tables { testTable: TestTable } } interface TestTable { id?: number } export function apply(ctx: Context) { const cache = ctx.cache() // 这里的类型是数据库的 Table,而不是 cache 中的 Table } export const using = ['database', '__cache__'] as const
declare module '@koishijs/cache'
Generated by koishi-plugin-github.
是的,但是这里的问题是
2.0.0-alpha.0 版本已经解决此问题(因为删掉了相关 API)。
复现代码