Files
test1/package/constant/index.ts
2026-03-20 07:33:46 +00:00

8 lines
163 B
TypeScript

export const PrivateOSSType = {
ALIYUN: 'aliyun',
MINIO: 'minio',
} as const
export type PrivateOSSType = typeof PrivateOSSType[keyof typeof PrivateOSSType]