Skip to content
This repository was archived by the owner on Mar 1, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* eslint-disable */

import { type SchemaType as $Schema } from "./schema-lite";
import { type ModelResult as $ModelResult } from "@zenstackhq/orm";
import type { ModelResult as $ModelResult } from "@zenstackhq/orm";
export type User = $ModelResult<$Schema, "User">;
export type Post = $ModelResult<$Schema, "Post">;
export type Category = $ModelResult<$Schema, "Category">;
Expand Down
2 changes: 1 addition & 1 deletion samples/sveltekit/src/zenstack/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* eslint-disable */

import { type SchemaType as $Schema } from "./schema-lite";
import { type ModelResult as $ModelResult } from "@zenstackhq/orm";
import type { ModelResult as $ModelResult } from "@zenstackhq/orm";
/**
* User model
*/
Expand Down
Loading