@upstart.gg/sdk
Version:
You can test the CLI without recompiling by running:
17 lines (16 loc) • 996 B
TypeScript
import * as _sinclair_typebox7106 from "@sinclair/typebox";
import { Static } from "@sinclair/typebox";
//#region src/shared/datasources/internal/changelog/schema.d.ts
declare const changelogSchema: _sinclair_typebox7106.TArray<_sinclair_typebox7106.TObject<{
title: _sinclair_typebox7106.TString;
version: _sinclair_typebox7106.TOptional<_sinclair_typebox7106.TString>;
date: _sinclair_typebox7106.TString;
changes: _sinclair_typebox7106.TArray<_sinclair_typebox7106.TObject<{
type: _sinclair_typebox7106.TUnion<[_sinclair_typebox7106.TLiteral<"added">, _sinclair_typebox7106.TLiteral<"changed">, _sinclair_typebox7106.TLiteral<"fixed">, _sinclair_typebox7106.TLiteral<"improved">, _sinclair_typebox7106.TLiteral<"deprecated">, _sinclair_typebox7106.TLiteral<"removed">]>;
description: _sinclair_typebox7106.TString;
}>>;
}>>;
type ChangelogSchema = Static<typeof changelogSchema>;
//#endregion
export { ChangelogSchema, changelogSchema };
//# sourceMappingURL=schema.d.ts.map