summaryrefslogtreecommitdiff
path: root/gui/src/types/urbit.ts
blob: af9ee06d96718bc4bf65b9ce7bc7f9b26cf5f978 (plain)
1
2
3
4
5
6
7
8
export type Ship = string;
export interface S3Bucket {
  accessKeyId: string;
  endpoint: string;
  secretAccessKey: string;
  bucket: string;
  region: string;
}