File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed
vue-cli-plugin-cloudinary-api Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+
2+ import { ResourceType } from '../cloud/ResourceType'
3+ import { StorageType } from '../cloud/StorageType'
4+
5+ export interface Asset {
6+ publicId : string ,
7+ assetId : string ,
8+ format : string ,
9+ secureUrl : string ,
10+ type : StorageType ,
11+ version : string | number ,
12+ height : number ,
13+ width : number ,
14+ eager ?: Object [ ] ,
15+ placeholder ?: boolean ,
16+ tags ?: string [ ] ,
17+ originalFilename : string ,
18+ overwritten ?: boolean ,
19+ resourceType : ResourceType
20+ }
Original file line number Diff line number Diff line change @@ -34,3 +34,5 @@ export {
3434export {
3535 SocialCard , SocialImage , SocialText , TextArea
3636} from './options/TextOptions'
37+
38+ export { Asset } from './asset/Asset'
Original file line number Diff line number Diff line change 11# ` vue-cli-plugin-cloudinary-api `
22
3+ [ ![ npm version] [ npm-version-src ]] [ npm-version-href ]
4+ [ ![ npm downloads] [ npm-downloads-src ]] [ npm-downloads-href ]
5+ [ ![ License] [ license-src ]] [ license-href ]
6+
37> Vue-cli plugin for installing Cloudinary light APIs in Vue project.
48
59## Usage
610
711``` bash
812vue add cloudinary-api
913```
14+
15+ <!-- Badges -->
16+ [ npm-version-src ] : https://img.shields.io/npm/v/vue-cli-plugin-cloudinary-api/latest.svg
17+ [ npm-version-href ] : https://npmjs.com/package/vue-cli-plugin-cloudinary-api
18+
19+ [ npm-downloads-src ] : https://img.shields.io/npm/dt/vue-cli-plugin-cloudinary-api.svg
20+ [ npm-downloads-href ] : https://npmjs.com/package/vue-cli-plugin-cloudinary-api
21+
22+ [ license-src ] : https://img.shields.io/npm/l/vue-cli-plugin-cloudinary-api.svg
23+ [ license-href ] : https://npmjs.com/package/vue-cli-plugin-cloudinary-api
You can’t perform that action at this time.
0 commit comments