mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-06-12 19:55:19 +02:00
7 lines
No EOL
270 B
TypeScript
7 lines
No EOL
270 B
TypeScript
import twitterPodcast from './twitter-podcast.json' with { type: 'json' };
|
|
import { Example } from '../entities/example.js';
|
|
import z from 'zod';
|
|
|
|
export const examples: Record<string, z.infer<typeof Example>> = {
|
|
"twitter-podcast": Example.parse(twitterPodcast),
|
|
}; |