UNPKG

@upstart.gg/sdk

Version:

You can test the CLI without recompiling by running:

23 lines (21 loc) 541 B
import type { RssSchema } from "./schema"; export const sample = [ { title: "Example title", link: "https://example.com", pubDate: "2022-01-01T00:00:00Z", content: "Example content", }, { title: "Another example title", link: "https://example.com", pubDate: "2022-01-02T00:00:00Z", content: "Another example content", }, { title: "Yet another example title", link: "https://example.com", pubDate: "2022-01-03T00:00:00Z", content: "Yet another example content", }, ] as RssSchema;