Skip to content

Commit ce61607

Browse files
committed
chore(utils): export types
1 parent 6fcba99 commit ce61607

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/utils/src/validation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ interface ProofType {
251251
featureFlags: Record<string, unknown>;
252252
}
253253

254-
interface SerializedType {
254+
export interface SerializedType {
255255
_type?: string;
256256
// TODO: update based on mina-credentials
257257
type?: "Constant";
@@ -358,7 +358,7 @@ const SerializedSignatureSchema = z
358358

359359
// Private Credentials: Node schemas
360360

361-
type Node =
361+
export type Node =
362362
| { type: "owner" }
363363
| { type: "issuer"; credentialKey: string }
364364
| { type: "constant"; data: z.infer<typeof SerializedValueSchema> }

0 commit comments

Comments
 (0)