Skip to content

Commit b47c825

Browse files
committed
fmt
1 parent 3259cf0 commit b47c825

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • yarn-project/blob-sink/src/types

yarn-project/blob-sink/src/types/api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { z } from 'zod';
22

33
export interface PostBlobSidecarRequest {
4+
// eslint-disable-next-line camelcase
45
block_id: string;
56
blobs: Array<{
67
index: number;
@@ -18,6 +19,7 @@ export const blockIdSchema = z.coerce
1819
.max(66);
1920

2021
export const postBlobSidecarSchema = z.object({
22+
// eslint-disable-next-line camelcase
2123
block_id: blockIdSchema,
2224
blobs: z.array(
2325
z.object({

0 commit comments

Comments
 (0)