@upstart.gg/sdk
Version:
You can test the CLI without recompiling by running:
25 lines (24 loc) • 566 B
JavaScript
//#region src/shared/datasources/external/rss/sample.ts
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"
}
];
//#endregion
export { sample };
//# sourceMappingURL=sample.js.map