File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ export type {
8080 PluginDefinition ,
8181 PluginContextData ,
8282 ObjectStackManifest ,
83- } from ' @objectstack/spec/kernel ' ;
83+ } from ' @objectstack/spec/system ' ;
8484
8585export type {
8686 ServiceObject ,
@@ -165,7 +165,7 @@ export const MyPlugin: ObjectQLPlugin = {
165165
166166** New Style (ObjectStack Spec Plugin):**
167167``` typescript
168- import type { PluginDefinition , PluginContextData } from ' @objectstack/spec/kernel ' ;
168+ import type { PluginDefinition , PluginContextData } from ' @objectstack/spec/system ' ;
169169
170170export const MyPlugin: PluginDefinition = {
171171 async onEnable(context : PluginContextData ) {
@@ -187,7 +187,7 @@ The API remains mostly unchanged. The main difference is better type safety:
187187
188188``` typescript
189189import { ObjectOS } from ' @objectos/kernel' ;
190- import type { ObjectStackManifest } from ' @objectstack/spec/kernel ' ;
190+ import type { ObjectStackManifest } from ' @objectstack/spec/system ' ;
191191
192192const os = new ObjectOS ({
193193 plugins: [MyPlugin ],
You can’t perform that action at this time.
0 commit comments