EndemolShineGroup/github-backup-cli

View on GitHub
src/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Required<T> = T extends object
  ? { [P in keyof T]-?: NonNullable<T[P]> }
  : T;

export interface Repo {
  fullName: string;
  name: string;
  httpsUrl: string;
  sshUrl: string;
}