8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
|
|
export const PrivateOSSType = {
|
|
ALIYUN: 'aliyun',
|
|
MINIO: 'minio',
|
|
} as const
|
|
|
|
export type PrivateOSSType = typeof PrivateOSSType[keyof typeof PrivateOSSType]
|