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 6fcba99 commit ce61607Copy full SHA for ce61607
packages/utils/src/validation.ts
@@ -251,7 +251,7 @@ interface ProofType {
251
featureFlags: Record<string, unknown>;
252
}
253
254
-interface SerializedType {
+export interface SerializedType {
255
_type?: string;
256
// TODO: update based on mina-credentials
257
type?: "Constant";
@@ -358,7 +358,7 @@ const SerializedSignatureSchema = z
358
359
// Private Credentials: Node schemas
360
361
-type Node =
+export type Node =
362
| { type: "owner" }
363
| { type: "issuer"; credentialKey: string }
364
| { type: "constant"; data: z.infer<typeof SerializedValueSchema> }
0 commit comments