trm-registry-types
Version:
TRM Registry Types
13 lines (12 loc) • 319 B
TypeScript
import { Release } from "./Release";
import { UserAuthorization } from "./UserAuthorization";
export type View = {
name?: string;
private?: boolean;
shortDescription?: string;
website?: string;
git?: string;
license?: string;
userAuthorizations: UserAuthorization;
release?: Release;
};