We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9cf78 commit 97c38fcCopy full SHA for 97c38fc
docs/the-complete-guide/part2/3-writing-plugins.md
@@ -17,7 +17,8 @@ A plugin is a Node.js module that has the following exports:
17
Here's what a bare minimum plugin looks like:
18
19
```ts
20
-import type { DMMF, PluginOptions } from '@zenstackhq/sdk';
+import type { PluginOptions } from '@zenstackhq/sdk';
21
+import type { DMMF } from '@zenstackhq/sdk/prisma';
22
import type { Model } from '@zenstackhq/sdk/ast';
23
24
export const name = 'My Plugin';
0 commit comments